 /* ============================================================
       CO-HOST REQUEST PAGE — prefix: chr-
    ============================================================ */
 .chr-wrap {
     max-width: 1100px;
     margin: 120px auto;
     padding: 28px 16px 64px;
     color: var(--text, #231805);
 }

 /* ── Top Bar ── */
 .chr-topbar {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 14px;
     margin-bottom: 22px;
 }

 .chr-heading h1 {
     font-family: 'Syne', sans-serif;
     font-size: 1.6rem;
     font-weight: 800;
     color: var(--text, #231805);
     letter-spacing: -0.5px;
     margin: 0 0 4px;
     line-height: 1.2;
 }

 .chr-heading p {
     font-size: 0.8rem;
     color: var(--dark-gray, #555);
     margin: 0;
 }

 .chr-create-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--primary, #e3982d);
     color: #fff;
     border: none;
     padding: 10px 20px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.85rem;
     font-weight: 700;
     border-radius: 10px;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     text-decoration: none;
     transition: all 0.25s ease;
     box-shadow: 0 4px 14px rgba(227, 152, 45, 0.35);
     white-space: nowrap;
     flex-shrink: 0;
 }

 .chr-create-btn:hover {
     background: var(--secondary, #007968);
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(0, 121, 104, 0.3);
     color: #fff;
 }

 .chr-create-btn svg {
     flex-shrink: 0;
 }

 /* ── Stats ── */
 .chr-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 10px;
     margin-bottom: 20px;
 }

 .chr-stat {
     background: rgba(255, 255, 255, 0.88);
     border-radius: 10px;
     border: 1px solid rgba(227, 152, 45, 0.15);
     padding: 12px 14px;
     display: flex;
     align-items: center;
     gap: 10px;
     backdrop-filter: blur(8px);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .chr-stat:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(35, 24, 5, 0.08);
 }

 .chr-stat-icon {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.05rem;
     flex-shrink: 0;
 }

 .chr-stat-icon.teal {
     background: rgba(0, 97, 108, 0.12);
 }

 .chr-stat-icon.orange {
     background: rgba(227, 152, 45, 0.15);
 }

 .chr-stat-icon.green {
     background: rgba(71, 141, 78, 0.15);
 }

 .chr-stat-icon.red {
     background: rgba(220, 53, 69, 0.1);
 }

 .chr-stat-info {
     display: flex;
     flex-direction: column;
     gap: 1px;
 }

 .chr-stat-val {
     font-family: 'Syne', sans-serif;
     font-size: 1.2rem;
     font-weight: 800;
     color: var(--text, #231805);
     line-height: 1;
 }

 .chr-stat-lbl {
     font-size: 0.67rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.6px;
     color: var(--dark-gray, #555);
 }

 /* ── Main Card ── */
 .chr-card {
     background: rgba(255, 255, 255, 0.93);
     backdrop-filter: blur(12px);
     border-radius: 16px;
     box-shadow: 0 4px 28px rgba(35, 24, 5, 0.07);
     border: 1px solid rgba(227, 152, 45, 0.13);
     overflow: hidden;
 }

 .chr-card-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 18px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.1);
     flex-wrap: wrap;
     gap: 8px;
 }

 .chr-card-title {
     font-family: 'Syne', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.3px;
     color: var(--primary, #e3982d);
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .chr-card-title svg {
     width: 13px;
     height: 13px;
 }

 .chr-badge {
     font-size: 0.7rem;
     font-weight: 700;
     background: rgba(227, 152, 45, 0.1);
     color: var(--primary, #e3982d);
     padding: 3px 10px;
     border-radius: 20px;
     border: 1px solid rgba(227, 152, 45, 0.22);
 }

 /* ── Desktop Table ── */
 .chr-table-wrap {
     overflow-x: auto;
 }

 .chr-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.83rem;
 }

 .chr-table thead tr {
     background: rgba(227, 152, 45, 0.05);
     border-bottom: 1.5px solid rgba(227, 152, 45, 0.12);
 }

 .chr-table thead th {
     padding: 10px 14px;
     text-align: left;
     font-family: 'Syne', sans-serif;
     font-size: 0.64rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--dark-slate-gray, #2f4858);
     white-space: nowrap;
 }

 .chr-table thead th.tc {
     text-align: center;
 }

 .chr-table tbody tr {
     border-bottom: 1px solid rgba(227, 152, 45, 0.07);
     transition: background 0.15s ease;
 }

 .chr-table tbody tr:last-child {
     border-bottom: none;
 }

 .chr-table tbody tr:hover {
     background: rgba(227, 152, 45, 0.03);
 }

 .chr-table td {
     padding: 11px 14px;
     vertical-align: middle;
     color: var(--text, #231805);
 }

 .chr-table td.tc {
     text-align: center;
 }

 /* Name cell */
 .chr-avatar-wrap {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .chr-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(0, 97, 108, 0.18), rgba(0, 121, 104, 0.14));
     border: 2px solid rgba(0, 97, 108, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Syne', sans-serif;
     font-size: 0.75rem;
     font-weight: 800;
     color: var(--accent, #00616c);
     flex-shrink: 0;
     text-transform: uppercase;
 }

 .chr-name {
     font-weight: 700;
     font-size: 0.86rem;
     color: var(--text, #231805);
     line-height: 1.2;
 }

 .chr-role {
     font-size: 0.65rem;
     color: var(--dark-gray, #555);
     font-weight: 500;
     margin-top: 1px;
 }

 /* Contact cells */
 .chr-contact-val {
     font-size: 0.8rem;
     color: var(--dark-slate-gray, #2f4858);
 }

 .chr-contact-val.mono {
     font-family: monospace;
     font-size: 0.76rem;
     color: var(--accent, #00616c);
     font-weight: 700;
     letter-spacing: 0.3px;
 }

 /* Toggle switch */
 .chr-tog-wrap {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 3px;
 }

 .chr-tog-lbl {
     font-size: 0.58rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: var(--dark-gray, #555);
 }

 .chr-switch {
     position: relative;
     width: 36px;
     height: 18px;
     background: var(--chinese-silver, #ccc);
     border-radius: 9px;
     cursor: pointer;
     border: none;
     transition: background 0.22s ease;
 }

 .chr-switch::after {
     content: '';
     position: absolute;
     width: 14px;
     height: 14px;
     background: #fff;
     border-radius: 50%;
     top: 2px;
     left: 2px;
     transition: transform 0.22s ease;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
 }

 .chr-switch.on {
     background: var(--primary, #e3982d);
 }

 .chr-switch.on::after {
     transform: translateX(18px);
 }

 /* Status badges */
 .chr-status {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 5px 11px;
     border-radius: 20px;
     font-size: 0.68rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     white-space: nowrap;
 }

 .chr-status-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .chr-status.accepted {
     background: rgba(71, 141, 78, 0.12);
     color: var(--middle-green, #478d4e);
     border: 1px solid rgba(71, 141, 78, 0.22);
 }

 .chr-status.accepted .chr-status-dot {
     background: var(--middle-green, #478d4e);
 }

 .chr-status.rejected {
     background: rgba(220, 53, 69, 0.08);
     color: #dc3545;
     border: 1px solid rgba(220, 53, 69, 0.2);
 }

 .chr-status.rejected .chr-status-dot {
     background: #dc3545;
 }

 .chr-status.pending {
     background: rgba(227, 152, 45, 0.1);
     color: var(--primary, #e3982d);
     border: 1px solid rgba(227, 152, 45, 0.25);
 }

 .chr-status.pending .chr-status-dot {
     background: var(--primary, #e3982d);
 }

 

 /* Confirmed state — only show view */
 .chr-done-badge {
     font-size: 0.68rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-gray, #999);
     font-style: italic;
 }

 /* ── Mobile Cards ── */
 .chr-mob-list {
     display: none;
 }

 .chr-mob-card {
     padding: 15px 16px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.08);
     transition: background 0.15s ease;
 }

 .chr-mob-card:last-child {
     border-bottom: none;
 }

 .chr-mob-card:hover {
     background: rgba(227, 152, 45, 0.025);
 }

 .chr-mob-top {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 11px;
 }

 .chr-mob-info {
     flex: 1;
     min-width: 0;
 }

 .chr-mob-name {
     font-weight: 700;
     font-size: 0.9rem;
     color: var(--text, #231805);
     line-height: 1.2;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .chr-mob-role {
     font-size: 0.66rem;
     color: var(--dark-gray, #555);
     margin-top: 1px;
 }

 .chr-mob-fields {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 8px;
     margin-bottom: 12px;
 }

 .chr-mob-field {
     display: flex;
     flex-direction: column;
     gap: 3px;
 }

 .chr-mob-field label {
     font-size: 0.58rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.7px;
     color: var(--dark-slate-gray, #2f4858);
 }

 .chr-mob-field span {
     font-size: 0.8rem;
     color: var(--text, #231805);
     font-weight: 500;
     word-break: break-all;
 }

 .chr-mob-field span.mono {
     font-family: monospace;
     font-size: 0.76rem;
     color: var(--accent, #00616c);
     font-weight: 700;
 }

 .chr-mob-foot {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     flex-wrap: wrap;
     padding-top: 11px;
     border-top: 1px solid rgba(227, 152, 45, 0.08);
 }

 .chr-mob-statuses {
     display: flex;
     gap: 7px;
     flex-wrap: wrap;
     align-items: center;
 }

 .chr-mob-actions {
     display: flex;
     gap: 6px;
     align-items: center;
     flex-wrap: wrap;
 }

 .chr-mob-tog {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .chr-mob-tog-lbl {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-gray, #555);
 }

 /* ── Empty state ── */
 .chr-empty {
     padding: 52px 20px;
     text-align: center;
     display: none;
 }

 .chr-empty-icon {
     font-size: 2.8rem;
     margin-bottom: 12px;
     opacity: 0.5;
 }

 .chr-empty p {
     font-size: 0.84rem;
     color: var(--dark-gray, #555);
     margin: 0;
 }

 /* ── Responsive ── */
 @media (max-width: 900px) {
     .chr-stats {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .chr-table-wrap {
         display: none;
     }

     .chr-mob-list {
         display: block;
     }

     .chr-heading h1 {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 480px) {
     .chr-wrap {
         padding: 16px 10px 50px;
     }

     .chr-stats {
         grid-template-columns: repeat(2, 1fr);
     }

     .chr-create-btn {
         padding: 9px 14px;
         font-size: 0.78rem;
     }

     .chr-mob-fields {
         grid-template-columns: 1fr;
     }
 }
