
    :root{
      --brand: #008080;      
      --brand-dark:#004040;
      --brand-soft:#e7f4f4;
      --bg:#f6f8f9;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#6b7280;
      --border:#e5e7eb;
      --radius: 5px;
    }

    body { background: var(--bg); color: var(--text); }

    .gp-nav{
      background: #fff;
      border-bottom: 1px solid rgba(15, 23, 42, .06);
    }
    .gp-brand{
      font-weight: 900;
      letter-spacing: .2px;
      color: var(--brand-dark) !important;
    }
    .gp-pill{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid rgba(0,128,128,.18);
      background: var(--brand-soft);
      color: var(--brand-dark);
      white-space: nowrap;
      text-decoration: none;
    }
    .gp-pill:hover{ filter: brightness(.98); }

    .gp-pill--solid{
      background: var(--brand);
      color: #fff;
      border-color: var(--brand);
    }

    .gp-card{
      background: var(--card);
      border: 1px solid rgba(15, 23, 42, .06);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }

    .gp-footer-space{ height: 18px; }

    .btn-brand{
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      font-weight: 800;
      border-radius: 999px;
      padding: 8px 14px;
    }
    .btn-brand:hover{
      background: var(--brand-dark);
      border-color: var(--brand-dark);
      color:#fff;
    }
    .btn-ghost{
      border-radius: 999px;
      padding: 8px 14px;
      font-weight: 800;
      border: 1px solid rgba(15,23,42,.10);
      background: #fff;
    }

    .gp-user-chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.10);
      background: #fff;
      font-weight: 800;
      color: var(--text);
    }
    .gp-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 4px rgba(0,128,128,.12);
    }

    .accordion-item{
      border: 1px solid rgba(15,23,42,.06);
      border-radius: var(--radius) !important;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }
    .accordion-button{
      font-weight: 900;
      color: var(--text);
      background: #fff;
    }
    .accordion-button:not(.collapsed){
      color: var(--brand-dark);
      background: rgba(0,128,128,.08);
      box-shadow: none;
    }

.status-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  white-space:nowrap;
  line-height:1;
  vertical-align:middle;
  max-width:100%;
  min-width:0;
}
.status-chip i{
  flex:0 0 auto;
  font-size:.65em;
  line-height:1;
}
@media (max-width: 576px){
  .status-chip{
    font-size: 12px;
    padding: .35rem .55rem;
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .status-chip i{
    font-size:.65em;
    line-height:1;
  }
}
