/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Layout/MainLayout.razor.rz.scp.css */
.page[b-3awu8hr0cc] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3awu8hr0cc] {
    flex: 1;
}

.app-footer[b-3awu8hr0cc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--border-color) 80%, white);
    color: var(--muted);
}

.app-footer-brand[b-3awu8hr0cc] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.app-footer-brand strong[b-3awu8hr0cc] {
    color: var(--text-color);
    font-size: 0.96rem;
}

.app-footer-brand span[b-3awu8hr0cc] {
    font-size: 0.88rem;
}

.app-footer-links[b-3awu8hr0cc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.app-footer-links a[b-3awu8hr0cc] {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    background: color-mix(in srgb, var(--surface-2) 78%, white);
    transition: border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.app-footer-links a:hover[b-3awu8hr0cc] {
    border-color: var(--accent);
    color: var(--accent-strong);
    transform: translateY(-1px);
}

.sidebar[b-3awu8hr0cc] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3awu8hr0cc] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3awu8hr0cc]  a, .top-row[b-3awu8hr0cc]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3awu8hr0cc]  a:hover, .top-row[b-3awu8hr0cc]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3awu8hr0cc]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3awu8hr0cc] {
        justify-content: space-between;
    }

    .top-row[b-3awu8hr0cc]  a, .top-row[b-3awu8hr0cc]  .btn-link {
        margin-left: 0;
    }

    .app-footer[b-3awu8hr0cc] {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-footer-links[b-3awu8hr0cc] {
        justify-content: flex-start;
    }
}

@media (min-width: 641px) {
    .page[b-3awu8hr0cc] {
        flex-direction: row;
    }

    .sidebar[b-3awu8hr0cc] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3awu8hr0cc] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3awu8hr0cc]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3awu8hr0cc], article[b-3awu8hr0cc] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Pages/Account/Following.razor.rz.scp.css */
.following-page[b-xxzd64f332] {
  max-width: 640px;
}

.following-header[b-xxzd64f332] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.following-header h1[b-xxzd64f332] {
  margin: 0;
  font-size: 1.4rem;
}

.back-link[b-xxzd64f332] {
  font-size: .875rem;
  color: #596478;
  text-decoration: none;
  white-space: nowrap;
}

.back-link:hover[b-xxzd64f332] { color: #0f1724; }

.following-list[b-xxzd64f332] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.following-item[b-xxzd64f332] {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  transition: box-shadow .15s;
}

.following-item:hover[b-xxzd64f332] {
  box-shadow: 0 2px 10px rgba(7,34,71,.07);
}

.following-avatar[b-xxzd64f332] {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.following-avatar-fallback[b-xxzd64f332] {
  display: grid;
  place-items: center;
  background: #d9e6ff;
  color: #1f4f96;
  font-weight: 700;
  font-size: 1.1rem;
}

.following-name[b-xxzd64f332] {
  flex: 1;
  font-weight: 500;
  color: #0f1724;
  font-size: .95rem;
}

.following-actions[b-xxzd64f332] {
  display: flex;
  gap: .5rem;
  align-items: center;
}

button.danger[b-xxzd64f332] { color: #a93333; border-color: #f4b7b7; }
button.danger:hover[b-xxzd64f332] { background: #fff0f0; }

.following-empty[b-xxzd64f332] {
  padding: 2rem 0;
  color: #596478;
}

.following-empty p[b-xxzd64f332] { margin: 0 0 .25rem; }

.load-more-row[b-xxzd64f332] {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Pages/Evaluations/Index.razor.rz.scp.css */
.discovery-section[b-op0cz8er5d] { margin-top: 1rem; }

.discovery-header[b-op0cz8er5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}

.discovery-header h2[b-op0cz8er5d] { margin: 0; font-size: 1.1rem; }

.discovery-toggle[b-op0cz8er5d] {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.feed-toggle-btn[b-op0cz8er5d] {
  all: unset;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: .88rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s, background .15s;
}

.feed-toggle-btn:hover[b-op0cz8er5d] {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.feed-toggle-btn.active[b-op0cz8er5d] {
  color: var(--color-primary);
  background: var(--color-primary-dim);
  box-shadow: inset 0 -2px 0 var(--color-primary);
}

.follow-badge[b-op0cz8er5d] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0fb4d5;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
}

.discovery-filters[b-op0cz8er5d] {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.discovery-filters input[b-op0cz8er5d] { flex: 1; min-width: 160px; }
.discovery-filters select[b-op0cz8er5d] { min-width: 130px; }

.discovery-empty[b-op0cz8er5d] {
  padding: 2rem 0;
  color: #596478;
}

.eval-grid[b-op0cz8er5d] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}

.eval-card[b-op0cz8er5d] {
  border: 1px solid #dce4ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0f1724;
  transition: box-shadow .18s, transform .18s;
}

.eval-card:hover[b-op0cz8er5d] {
  box-shadow: 0 8px 24px rgba(7,34,71,.10);
  transform: translateY(-2px);
}

.eval-card-body[b-op0cz8er5d] {
  padding: .9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.eval-card-row[b-op0cz8er5d] {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: flex-start;
}

.eval-card-actions[b-op0cz8er5d] {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.eval-card-row h3[b-op0cz8er5d] {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: #0f1724;
  line-height: 1.35;
}

.eval-meta[b-op0cz8er5d], .eval-type[b-op0cz8er5d], .eval-owner[b-op0cz8er5d] {
  font-size: .8rem;
  color: #596478;
  margin: 0;
}

.eval-chip[b-op0cz8er5d] {
  font-size: .68rem;
  font-weight: 600;
  border: 1px solid #d0d7e2;
  padding: .18rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #475569;
  background: #f8fafc;
}

.eval-chip--open[b-op0cz8er5d]     { border-color: #bbf7d0; color: #15803d; background: #f0fdf4; }
.eval-chip--inreview[b-op0cz8er5d] { border-color: #fde68a; color: #92400e; background: #fffbeb; }
.eval-chip--closed[b-op0cz8er5d]   { border-color: #cbd5e1; color: #475569; background: #f8fafc; }

.eval-card-footer[b-op0cz8er5d] {
  padding: .55rem .9rem .7rem;
  border-top: 1px solid #f0f4fa;
  display: flex;
  justify-content: flex-end;
}

.eval-open-link-btn[b-op0cz8er5d] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.card-menu-btn[b-op0cz8er5d] {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #475569;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,36,.06);
}
.card-menu-panel[b-op0cz8er5d] {
  position: absolute;
  right: 0;
  top: 32px;
  min-width: 200px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7,34,71,.15);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  z-index: 5;
}
.card-menu-panel button[b-op0cz8er5d] {
  text-align: left;
  border: 0;
  background: transparent;
  padding: .45rem .5rem;
  border-radius: 8px;
  color: #0f1724;
}
.card-menu-panel button:hover[b-op0cz8er5d] { background: #f3f6fb; }

.eval-open-link[b-op0cz8er5d] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.load-more-row[b-op0cz8er5d] {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.muted[b-op0cz8er5d] { font-size: .85rem; color: #596478; }
.text-center[b-op0cz8er5d] { text-align: center; margin-top: 1rem; }

@media (max-width: 560px) {
  .eval-grid[b-op0cz8er5d] { grid-template-columns: 1fr; }
  .discovery-header[b-op0cz8er5d] { flex-direction: column; align-items: flex-start; }
}

.card-menu-popover[b-op0cz8er5d] {
  position: fixed;
  min-width: 220px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(7,34,71,.18);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  z-index: 9999;
}
.card-menu-popover button[b-op0cz8er5d] {
  text-align: left;
  border: 0;
  background: transparent;
  padding: .5rem .6rem;
  border-radius: 8px;
  color: #0f1724;
}
.card-menu-popover button:hover[b-op0cz8er5d] { background: #f3f6fb; }

.menu-backdrop[b-op0cz8er5d] {
  position: fixed;
  inset: 0;
  border: 0;
  background: transparent;
  z-index: 10000;
}

.menu-item-btn[b-op0cz8er5d] {
  -webkit-appearance: none !important;
  appearance: none !important;
  text-align: left;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  padding: .55rem .65rem;
  border-radius: 8px;
  color: #0f1724;
  width: 100%;
  cursor: pointer;
  font: inherit;
  font-size: .98rem;
  line-height: 1.25;
  box-shadow: none !important;
}

.menu-item-btn:hover[b-op0cz8er5d] { background: #f3f6fb; }
/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Pages/Events/Index.razor.rz.scp.css */
.discovery-section[b-23nveh8l93] { margin-top: 1rem; }

.discovery-header[b-23nveh8l93] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}

.discovery-header h2[b-23nveh8l93] { margin: 0; font-size: 1.1rem; }

.discovery-toggle[b-23nveh8l93] {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.feed-toggle-btn[b-23nveh8l93] {
  all: unset;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: .88rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s, background .15s;
}

.feed-toggle-btn:hover[b-23nveh8l93] {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.feed-toggle-btn.active[b-23nveh8l93] {
  color: var(--color-primary);
  background: var(--color-primary-dim);
  box-shadow: inset 0 -2px 0 var(--color-primary);
}

.follow-badge[b-23nveh8l93] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0fb4d5;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
}

.discovery-filters[b-23nveh8l93] {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.discovery-filters input[b-23nveh8l93] { width: 240px; min-width: 0; }
.discovery-filters select[b-23nveh8l93] { width: 160px; min-width: 0; }

.discovery-empty[b-23nveh8l93] {
  padding: 2rem 0;
  color: #596478;
}

.directory-grid[b-23nveh8l93] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.directory-card[b-23nveh8l93] {
  border: 1px solid #dce4ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0f1724;
  transition: box-shadow .18s, transform .18s;
}

.directory-card:hover[b-23nveh8l93] {
  box-shadow: 0 8px 24px rgba(7,34,71,.10);
  transform: translateY(-2px);
}

.directory-card-banner[b-23nveh8l93] {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.directory-card-banner--placeholder[b-23nveh8l93] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0fe 0%, #d2e3ff 100%);
  font-size: 2.25rem;
}

.directory-card-body[b-23nveh8l93] {
  padding: .9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.directory-card-row[b-23nveh8l93] {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: flex-start;
}

.directory-card-actions[b-23nveh8l93] {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.directory-card-row h3[b-23nveh8l93] {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: #0f1724;
  line-height: 1.35;
}

.directory-card-meta[b-23nveh8l93], .directory-card-owner[b-23nveh8l93] {
  font-size: .8rem;
  color: #596478;
  margin: 0;
}

.directory-card-footer[b-23nveh8l93] {
  padding: .55rem .9rem .7rem;
  border-top: 1px solid #f0f4fa;
  display: flex;
  justify-content: flex-end;
}

.directory-card-link-btn[b-23nveh8l93] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.card-menu-btn[b-23nveh8l93] {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #475569;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,36,.06);
}
.card-menu-panel[b-23nveh8l93] {
  position: absolute;
  right: 0;
  top: 32px;
  min-width: 200px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7,34,71,.15);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  z-index: 5;
}
.card-menu-panel button[b-23nveh8l93] {
  text-align: left;
  border: 0;
  background: transparent;
  padding: .45rem .5rem;
  border-radius: 8px;
  color: #0f1724;
}
.card-menu-panel button:hover[b-23nveh8l93] { background: #f3f6fb; }

.directory-card-link[b-23nveh8l93] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.load-more-row[b-23nveh8l93] {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.muted[b-23nveh8l93] { font-size: .85rem; color: #596478; }
.text-center[b-23nveh8l93] { text-align: center; margin-top: 1rem; }

@media (max-width: 560px) {
  .directory-grid[b-23nveh8l93] { grid-template-columns: 1fr; }
  .discovery-header[b-23nveh8l93] { flex-direction: column; align-items: flex-start; }
}

.card-menu-popover[b-23nveh8l93] {
  position: fixed;
  min-width: 200px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,34,71,.13), 0 2px 6px rgba(7,34,71,.07);
  padding: .3rem;
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.menu-backdrop[b-23nveh8l93] {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 10000;
  cursor: default;
}

.menu-item-btn[b-23nveh8l93] {
  all: unset;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: .5rem .75rem;
  border-radius: 8px;
  color: #0f1724;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background .12s;
}

.menu-item-btn:hover[b-23nveh8l93] { background: #f3f6fb; }
.menu-item-btn:active[b-23nveh8l93] { background: #e8eef8; }
.menu-item-btn:disabled[b-23nveh8l93] { color: #94a3b8; cursor: default; }
/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Pages/Judges/Dashboard.razor.rz.scp.css */
.judge-event-selector[b-frgxq6m12g] {
  margin-bottom: 1rem;
}

.judge-event-selector-list[b-frgxq6m12g] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.judge-event-selector-item[b-frgxq6m12g] {
  min-width: 0;
  flex: 1 1 260px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
  text-align: left;
  overflow: hidden;
}

.judge-event-selector-item.active[b-frgxq6m12g] {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.judge-event-selector-name[b-frgxq6m12g] {
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}

.judge-event-selector-summary[b-frgxq6m12g] {
  opacity: 0.75;
}

.judge-scoring-panel[b-frgxq6m12g] {
  padding: 1.25rem;
  overflow: hidden;
  min-width: 0;
}

.judge-conflict-summary[b-frgxq6m12g] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.judge-live-header[b-frgxq6m12g] {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  min-width: 0;
}

.judge-live-header > div[b-frgxq6m12g] {
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.judge-live-header .metric-parent-context[b-frgxq6m12g] {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.judge-contestant-tabs[b-frgxq6m12g] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.judge-contestant-tab[b-frgxq6m12g] {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.judge-contestant-tab.active[b-frgxq6m12g] {
  border-color: var(--brand, #2eaadc);
  background: rgba(46,170,220,0.18);
  box-shadow: 0 0 0 2px rgba(46,170,220,0.18);
}

.judge-tab-lock-toggle[b-frgxq6m12g] {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.judge-score-form[b-frgxq6m12g] {
  display: grid;
  gap: 1rem;
}

.judge-metric-parent[b-frgxq6m12g] {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: -0.35rem;
}

.judge-metric-row[b-frgxq6m12g] {
  display: grid;
  gap: 0.5rem;
}

.judge-metric-row input[b-frgxq6m12g] {
  width: 100%;
  max-width: 180px;
  background: #fff;
  color: #162033;
  border: 1px solid #c8d6ea;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.judge-metric-row input:focus[b-frgxq6m12g] {
  outline: none;
  border-color: var(--brand, #2eaadc);
  box-shadow: 0 0 0 3px rgba(46,170,220,0.18);
}

.judge-metric-row input:disabled[b-frgxq6m12g] {
  background: #eef3fb;
  color: #6f7d92;
  cursor: not-allowed;
}

.judge-score-actions[b-frgxq6m12g] {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.metric-description[b-frgxq6m12g] {
  margin: 0.2rem 0 0;
  opacity: 0.75;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  /* flex layouts collapse to column */
  .judge-live-header[b-frgxq6m12g],
  .judge-score-actions[b-frgxq6m12g],
  .judge-conflict-summary[b-frgxq6m12g] {
    flex-direction: column;
    align-items: stretch;
  }

  /* grid layout — children must NOT stretch or pills become circles */
  .judge-event-selector-item[b-frgxq6m12g] {
    align-items: start;
  }

  .judge-event-selector-list[b-frgxq6m12g] {
    flex-direction: column;
  }

  .judge-event-selector-item[b-frgxq6m12g] {
    min-width: unset;
    flex: unset;
    width: 100%;
  }

  .judge-contestant-tab[b-frgxq6m12g] {
    width: 100%;
    justify-content: space-between;
  }

  .judge-score-actions[b-frgxq6m12g] {
    justify-content: stretch;
  }

  .judge-score-actions button[b-frgxq6m12g] {
    flex: 1;
  }

  .judge-event-selector-name[b-frgxq6m12g],
  .judge-event-selector-summary[b-frgxq6m12g],
  .judge-live-header h4[b-frgxq6m12g],
  .judge-live-header .metric-parent-context[b-frgxq6m12g],
  .metric-description[b-frgxq6m12g],
  .score-range-hint[b-frgxq6m12g],
  .score-range[b-frgxq6m12g],
  .score-progress-lock-banner[b-frgxq6m12g],
  .judge-conflict-summary small[b-frgxq6m12g],
  .judge-contestant-tab span:first-child[b-frgxq6m12g] {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .judge-live-header > div[b-frgxq6m12g],
  .judge-event-selector-item[b-frgxq6m12g],
  .judge-contestant-tab[b-frgxq6m12g],
  .score-entry[b-frgxq6m12g],
  .score-entry-header[b-frgxq6m12g],
  .judge-conflict-summary[b-frgxq6m12g],
  .judge-score-actions[b-frgxq6m12g] {
    min-width: 0;
  }

  .judge-scoring-panel[b-frgxq6m12g] {
    overflow-x: clip;
  }
}
/* _content/ScoringPlatform.Web.UI/../ScoringPlatform.Web/Pages/Users/Profile.razor.rz.scp.css */
/* ── Profile header ──────────────────────────────────────────────────────── */
.profile-header[b-d65li6da0q] {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface, #fff);
  border: 1px solid #dce4ef;
  border-radius: 16px;
}

.profile-main[b-d65li6da0q] {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile-avatar[b-d65li6da0q] {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.profile-avatar-fallback[b-d65li6da0q] {
  display: grid;
  place-items: center;
  background: #d9e6ff;
  color: #1f4f96;
  font-weight: 700;
  font-size: 1.75rem;
}

.profile-meta h1[b-d65li6da0q] {
  margin: 0 0 .2rem;
  font-size: 1.2rem;
  color: #0f1724;
}

.profile-meta .stat-line[b-d65li6da0q] {
  font-size: .85rem;
  color: #596478;
  margin: 0;
}

/* ── Tabs + filter row ───────────────────────────────────────────────────── */
.profile-controls[b-d65li6da0q] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tabs[b-d65li6da0q] {
  display: flex;
  gap: .25rem;
  background: #f0f4fa;
  border-radius: 999px;
  padding: .2rem;
}

.tab[b-d65li6da0q] {
  border: none;
  border-radius: 999px;
  padding: .4rem 1rem;
  background: transparent;
  color: #596478;
  font-weight: 500;
  font-size: .875rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.tab:hover[b-d65li6da0q] { background: #e4eaf5; }

.tab.active[b-d65li6da0q] {
  background: #fff;
  color: #0f1724;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.filter-row[b-d65li6da0q] {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-row input[b-d65li6da0q] {
  width: 200px;
  min-width: 0;
}

.filter-row select[b-d65li6da0q] {
  width: 160px;
  min-width: 0;
}

/* ── Feed grid ───────────────────────────────────────────────────────────── */
.feed-grid[b-d65li6da0q] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.feed-card[b-d65li6da0q] {
  border: 1px solid #dce4ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0f1724;          /* explicit — prevents global <a> teal bleed */
  transition: box-shadow .18s, transform .18s;
}

.feed-card:hover[b-d65li6da0q] {
  box-shadow: 0 8px 24px rgba(7, 34, 71, .10);
  transform: translateY(-2px);
}

.card-banner[b-d65li6da0q] {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.card-banner-placeholder[b-d65li6da0q] {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d2e3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.25rem;
}

.card-body[b-d65li6da0q] {
  padding: .9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.card-row[b-d65li6da0q] {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: flex-start;
  margin-bottom: .1rem;
}

.card-actions[b-d65li6da0q] {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.card-row h3[b-d65li6da0q] {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: #0f1724;
  line-height: 1.35;
}

.card-meta[b-d65li6da0q] {
  font-size: .8rem;
  color: #596478;
  margin: 0;
}

.chip[b-d65li6da0q] {
  font-size: .68rem;
  font-weight: 600;
  border: 1px solid #d0d7e2;
  padding: .18rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #475569;
  background: #f8fafc;
}

.chip.open[b-d65li6da0q]     { border-color: #bbf7d0; color: #15803d; background: #f0fdf4; }
.chip.scoring[b-d65li6da0q]  { border-color: #bfdbfe; color: #1d4ed8; background: #eff6ff; }
.chip.inreview[b-d65li6da0q] { border-color: #fde68a; color: #92400e; background: #fffbeb; }
.chip.closed[b-d65li6da0q]   { border-color: #cbd5e1; color: #475569; background: #f8fafc; }
.chip.draft[b-d65li6da0q]    { border-color: #e2e8f0; color: #64748b; background: #f1f5f9; }

.card-footer[b-d65li6da0q] {
  padding: .55rem .9rem .7rem;
  border-top: 1px solid #f0f4fa;
  display: flex;
  justify-content: flex-end;
}

.card-open-link[b-d65li6da0q] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.card-open-link-btn[b-d65li6da0q] {
  font-size: .8rem;
  font-weight: 600;
  color: #0fb4d5;
}

.card-menu-btn[b-d65li6da0q] {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #475569;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,36,.06);
}
.card-menu-panel[b-d65li6da0q] {
  position: absolute;
  right: 0;
  top: 32px;
  min-width: 200px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(7,34,71,.15);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  z-index: 5;
}
.card-menu-panel button[b-d65li6da0q] {
  text-align: left;
  border: 0;
  background: transparent;
  padding: .45rem .5rem;
  border-radius: 8px;
  color: #0f1724;
}
.card-menu-panel button:hover[b-d65li6da0q] { background: #f3f6fb; }

.error-banner[b-d65li6da0q] {
  border: 1px solid #f4b7b7;
  background: #fff0f0;
  color: #a93333;
  border-radius: 8px;
  padding: .6rem .8rem;
  margin-bottom: 1rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .profile-controls[b-d65li6da0q] { flex-direction: column; align-items: flex-start; }
  .filter-row input[b-d65li6da0q], .filter-row select[b-d65li6da0q] { width: 100%; }
  .feed-grid[b-d65li6da0q] { grid-template-columns: 1fr; }
}

.card-menu-popover[b-d65li6da0q] {
  position: fixed;
  min-width: 200px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,34,71,.13), 0 2px 6px rgba(7,34,71,.07);
  padding: .3rem;
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.menu-backdrop[b-d65li6da0q] {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 10000;
  cursor: default;
}

.menu-item-btn[b-d65li6da0q] {
  all: unset;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: .5rem .75rem;
  border-radius: 8px;
  color: #0f1724;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background .12s;
}

.menu-item-btn:hover[b-d65li6da0q] { background: #f3f6fb; }
.menu-item-btn:active[b-d65li6da0q] { background: #e8eef8; }
.menu-item-btn:disabled[b-d65li6da0q] { color: #94a3b8; cursor: default; }
