.weekend-command-centre {
    min-height: 100vh;
    padding: 40px;
    background:
      radial-gradient(circle at 88% 8%, rgba(220, 0, 0, 0.08), transparent 30%),
      #f7f4ef;
    color: #111827;
  }
  
  .wcc-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
  }
  
  .wcc-kicker {
    margin: 0 0 10px;
    color: #dc0000;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  .wcc-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
    text-transform: uppercase;
  }
  
  .wcc-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
  }
  
  .wcc-year-filter {
    min-width: 220px;
    padding: 18px;
    border: 1px solid #e5ded5;
    border-radius: 18px;
    background: #fff;
  }
  
  .wcc-year-filter label {
    display: block;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .wcc-year-filter select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d8d1c8;
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    font-weight: 800;
  }
  
  .wcc-summary-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
  }
  
  .wcc-summary-card {
    padding: 22px;
    border: 1px solid #e5ded5;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  }
  
  .wcc-summary-card strong {
    display: block;
    color: #111827;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  
  .wcc-summary-card span {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .wcc-summary-card.is-warning strong {
    color: #dc0000;
  }
  
  .wcc-panel {
    border: 1px solid #e5ded5;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  }
  
  .wcc-panel-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid #eee7df;
  }
  
  .wcc-panel-header h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.06em;
  }
  
  .wcc-muted,
  .wcc-sub {
    display: block;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.45;
  }
  
  .wcc-table-wrap {
    overflow-x: auto;
  }
  
  .wcc-table {
    width: 100%;
    min-width: 1280px;
    border-collapse: collapse;
  }
  
  .wcc-table th {
    padding: 16px 18px;
    background: #050811;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .wcc-table td {
    padding: 18px;
    border-bottom: 1px solid #eee7df;
    vertical-align: top;
    font-weight: 750;
  }
  
  .wcc-series-name {
    font-size: 1rem;
    font-weight: 950;
  }
  
  .wcc-pill,
  .wcc-status,
  .wcc-ok,
  .wcc-danger {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 0.35rem 0.58rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .wcc-pill {
    background: #f4f1eb;
    color: #374151;
  }
  
  .wcc-ok {
    background: #ecfdf3;
    color: #15803d;
  }
  
  .wcc-danger {
    background: #fff1f2;
    color: #dc0000;
  }
  
  .wcc-status-ready {
    background: #ecfdf3;
    color: #15803d;
  }
  
  .wcc-status-warning {
    background: #fff7ed;
    color: #c2410c;
  }
  
  .wcc-status-blocked {
    background: #fff1f2;
    color: #dc0000;
  }
  
  .wcc-row-blocked td:first-child {
    border-left: 5px solid #dc0000;
  }
  
  .wcc-row-warning td:first-child {
    border-left: 5px solid #f59e0b;
  }
  
  .wcc-row-ready td:first-child {
    border-left: 5px solid #16a34a;
  }
  
  @media (max-width: 900px) {
    .weekend-command-centre {
      padding: 24px 16px;
    }
  
    .wcc-hero {
      grid-template-columns: 1fr;
    }
  
    .wcc-summary-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .wcc-panel-header {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  .wcc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
  }
  
  .wcc-action-btn {
    width: 100%;
    min-height: 38px;
    border-radius: 9px;
    border: 1px solid transparent;
    padding: 0 12px;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  
  .wcc-action-btn-dark {
    background: #050811;
    color: #fff;
  }
  
  .wcc-action-btn-light {
    background: #fff;
    color: #111827;
    border-color: #d8d1c8;
  }
  
  .wcc-action-btn:hover {
    transform: translateY(-1px);
  }

  .wcc-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 16px;
    background: #050811;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }
  
  .wcc-form-shell {
    padding: 28px;
  }
  
  .wcc-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .wcc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .wcc-field-wide {
    grid-column: span 3;
  }
  
  .wcc-field label {
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .wcc-field input,
  .wcc-field select,
  .wcc-field textarea {
    width: 100%;
    border: 1px solid #d8d1c8;
    border-radius: 12px;
    padding: 0 12px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-weight: 750;
  }
  
  .wcc-field input,
  .wcc-field select {
    min-height: 46px;
  }
  
  .wcc-field textarea {
    padding-top: 12px;
    resize: vertical;
  }
  
  .wcc-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
  }
  
  .wcc-form-actions .wcc-action-btn {
    width: auto;
    min-width: 170px;
  }
  
  @media (max-width: 900px) {
    .wcc-form-grid {
      grid-template-columns: 1fr;
    }
  
    .wcc-field-wide {
      grid-column: span 1;
    }
  
    .wcc-form-actions {
      flex-direction: column;
    }
  
    .wcc-form-actions .wcc-action-btn {
      width: 100%;
    }
  }

  /* app/assets/stylesheets/admin_nav.css */
/* or whichever admin stylesheet is loaded globally */

.admin-flash {
  max-width: 1800px;
  margin: 24px auto;
  padding: 18px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid transparent;
}

.admin-flash.notice {
  background: #ecfdf3;
  color: #067647;
  border-color: #abefc6;
}

.admin-flash.alert {
  background: #fffaeb;
  color: #93370d;
  border-color: #fedf89;
}

.admin-flash.error {
  background: #fef3f2;
  color: #b42318;
  border-color: #fecdca;
}