/*
 * This is a manifest file that'll be compiled into application.css.
 */

.brand-name {
  font-family: system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b5b5b5;
  flex-shrink: 0;
}

.status-dot.is-live {
  background-color: hsl(152, 42%, 40%);
  animation: live-pulse 2.2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(72, 199, 116, 0.45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(72, 199, 116, 0);
  }
}

.content-editor {
  background-color: white;
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 0.25em;
}

.notification.is-light {
  color: #363636;
}

.comment-toggle {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid;
  background: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 0;
  color: #363636;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.comment-toggle:hover {
  background: #f5f5f5;
}

.comment-toggle.is-collapsed {
  background: #f5f5f5;
}

.comment-thread-bar {
  flex-grow: 1;
  margin-top: 2px;
}

.eval-depth-chart-container {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.site-footer {
  background-color: hsl(
    var(--bulma-scheme-h),
    var(--bulma-scheme-s),
    var(--bulma-scheme-main-l)
  );
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(24, 70%, 53%, 0.4) 20%,
    hsla(40, 80%, 50%, 0.5) 50%,
    hsla(24, 70%, 53%, 0.4) 80%,
    transparent
  );
}
