 /* ============================================================
       DASHBOARD PAGE — prefix: dsh-
    ============================================================ */
 .dsh-wrap {
     max-width: 1200px;
     margin: 80px auto;
     padding: 30px 16px 64px;
     color: var(--text, #231805);
     font-family: 'DM Sans', sans-serif;
 }

 /* ── Welcome Banner ── */
 .dsh-welcome {
     position: relative;
     background: rgba(255, 255, 255, 0.92);
     border-radius: 18px;
     border: 1px solid rgba(227, 152, 45, 0.18);
     box-shadow: 0 6px 32px rgba(35, 24, 5, 0.08);
     backdrop-filter: blur(14px);
     padding: 32px 36px;
     margin-bottom: 22px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap;
 }

 .dsh-welcome::before {
     content: '';
     position: absolute;
     right: -60px;
     top: -60px;
     width: 240px;
     height: 240px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(227, 152, 45, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .dsh-welcome::after {
     content: '';
     position: absolute;
     left: -40px;
     bottom: -50px;
     width: 180px;
     height: 180px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 121, 104, 0.08) 0%, transparent 70%);
     pointer-events: none;
 }

 .dsh-welcome-text {
     position: relative;
     z-index: 1;
 }

 .dsh-greet {
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: var(--primary, #e3982d);
     margin-bottom: 6px;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dsh-greet-dot {
     width: 6px;
     height: 6px;
     background: var(--primary, #e3982d);
     border-radius: 50%;
     animation: dshPulse 2s ease-in-out infinite;
 }

 @keyframes dshPulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.5);
         opacity: 0.6;
     }
 }

 .dsh-welcome-text h1 {
     font-family: 'Syne', sans-serif;
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--text, #231805);
     letter-spacing: -0.5px;
     line-height: 1.15;
     margin: 0 0 6px;
 }

 .dsh-welcome-text h1 span {
     color: var(--primary, #e3982d);
 }

 .dsh-welcome-text p {
     font-size: 0.85rem;
     color: var(--dark-gray, #555);
     margin: 0;
     max-width: 480px;
     line-height: 1.6;
 }

 .dsh-welcome-avatar {
     position: relative;
     z-index: 1;
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(227, 152, 45, 0.2), rgba(0, 121, 104, 0.15));
     border: 3px solid rgba(227, 152, 45, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     flex-shrink: 0;
     box-shadow: 0 4px 16px rgba(227, 152, 45, 0.2);
 }

 /* ── Role Buttons ── */
 .dsh-role-section {
     margin-bottom: 26px;
 }

 .dsh-section-label {
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     color: var(--dark-gray, #555);
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .dsh-section-label::after {
     content: '';
     flex: 1;
     height: 1px;
     background: rgba(227, 152, 45, 0.2);
 }

 .dsh-role-btns {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .dsh-role-btn {
     position: relative;
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 20px 22px;
     border-radius: 14px;
     border: 2px solid transparent;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.28s ease;
     overflow: hidden;
     background: rgba(255, 255, 255, 0.92);
     box-shadow: 0 4px 20px rgba(35, 24, 5, 0.06);
     backdrop-filter: blur(10px);
 }

 .dsh-role-btn::before {
     content: '';
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 0.28s ease;
     border-radius: 12px;
 }

 .dsh-role-btn:hover {
     transform: translateY(-3px);
 }

 .dsh-role-btn:hover::before {
     opacity: 1;
 }

 .dsh-role-btn.host {
     border-color: rgba(227, 152, 45, 0.25);
 }

 .dsh-role-btn.host::before {
     background: linear-gradient(135deg, rgba(227, 152, 45, 0.06), rgba(227, 152, 45, 0.02));
 }

 .dsh-role-btn.host:hover {
     border-color: var(--primary, #e3982d);
     box-shadow: 0 8px 28px rgba(227, 152, 45, 0.2);
 }

 .dsh-role-btn.cohost {
     border-color: rgba(0, 121, 104, 0.22);
 }

 .dsh-role-btn.cohost::before {
     background: linear-gradient(135deg, rgba(0, 121, 104, 0.06), rgba(0, 121, 104, 0.02));
 }

 .dsh-role-btn.cohost:hover {
     border-color: var(--secondary, #007968);
     box-shadow: 0 8px 28px rgba(0, 121, 104, 0.2);
 }

 .dsh-role-icon {
     width: 48px;
     height: 48px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 1.4rem;
     position: relative;
     z-index: 1;
 }

 .dsh-role-btn.host .dsh-role-icon {
     background: rgba(227, 152, 45, 0.12);
 }

 .dsh-role-btn.cohost .dsh-role-icon {
     background: rgba(0, 121, 104, 0.10);
 }

 .dsh-role-info {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     gap: 3px;
 }

 .dsh-role-title {
     font-family: 'Syne', sans-serif;
     font-size: 1rem;
     font-weight: 800;
     color: var(--text, #231805);
     letter-spacing: -0.2px;
 }

 .dsh-role-sub {
     font-size: 0.75rem;
     color: var(--dark-gray, #555);
     line-height: 1.4;
 }

 .dsh-role-arrow {
     margin-left: auto;
     position: relative;
     z-index: 1;
     opacity: 0.35;
     transition: all 0.22s ease;
     flex-shrink: 0;
 }

 .dsh-role-btn:hover .dsh-role-arrow {
     opacity: 1;
     transform: translateX(3px);
 }

 .dsh-role-btn.host:hover .dsh-role-arrow {
     color: var(--primary, #e3982d);
 }

 .dsh-role-btn.cohost:hover .dsh-role-arrow {
     color: var(--secondary, #007968);
 }

 /* ── Shared card ── */
 .dsh-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;
 }

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

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

 .dsh-card-title svg {
     width: 14px;
     height: 14px;
 }

 .dsh-view-all {
     font-size: 0.73rem;
     font-weight: 700;
     color: var(--secondary, #007968);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 4px;
     transition: gap 0.2s ease, color 0.2s ease;
 }

 .dsh-view-all:hover {
     gap: 7px;
     color: var(--accent, #00616c);
 }

 /* ── Table ── */
 .dsh-table-scroll {
     overflow-x: auto;
 }

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

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

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

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

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

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

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

 .dsh-table td {
     padding: 12px 16px;
     vertical-align: middle;
 }

 .dsh-table td.dsh-td-center {
     text-align: center;
 }

 .dsh-ev-name {
     font-weight: 700;
     font-size: 0.86rem;
     color: var(--text, #231805);
     white-space: nowrap;
     max-width: 180px;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .dsh-ev-code {
     font-size: 0.66rem;
     color: var(--accent, #00616c);
     font-family: monospace;
     font-weight: 700;
     letter-spacing: 0.5px;
     margin-top: 2px;
 }

 .dsh-ev-date {
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--text, #231805);
     white-space: nowrap;
 }

 .dsh-ev-time {
     font-size: 0.7rem;
     color: var(--dark-gray, #555);
     margin-top: 1px;
 }

 .dsh-stat-pill {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 36px;
     padding: 3px 10px;
     border-radius: 20px;
     font-size: 0.78rem;
     font-weight: 700;
     font-family: 'Syne', sans-serif;
 }

 .dsh-pill-total {
     background: rgba(47, 72, 88, 0.09);
     color: var(--dark-slate-gray, #2f4858);
 }

 .dsh-pill-uploaded {
     background: rgba(0, 97, 108, 0.1);
     color: var(--accent, #00616c);
 }

 .dsh-pill-confirm {
     background: rgba(71, 141, 78, 0.12);
     color: var(--middle-green, #478d4e);
 }

 .dsh-mini-progress {
     display: flex;
     flex-direction: column;
     gap: 3px;
     min-width: 80px;
 }

 .dsh-mini-bar-wrap {
     height: 5px;
     background: var(--gray-80, #ddd);
     border-radius: 3px;
     overflow: hidden;
 }

 .dsh-mini-bar {
     height: 100%;
     border-radius: 3px;
     transition: width 0.4s ease;
 }

 .dsh-mini-bar.green {
     background: var(--middle-green, #478d4e);
 }

 .dsh-mini-bar.orange {
     background: var(--primary, #e3982d);
 }

 .dsh-mini-nums {
     display: flex;
     justify-content: space-between;
     font-size: 0.65rem;
     color: var(--dark-gray, #555);
     font-weight: 600;
 }

 .dsh-view-btn {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 6px 13px;
     background: rgba(227, 152, 45, 0.09);
     color: var(--primary, #e3982d);
     border: 1px solid rgba(227, 152, 45, 0.25);
     border-radius: 7px;
     font-size: 0.7rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     text-decoration: none;
     white-space: nowrap;
     transition: all 0.2s ease;
     cursor: pointer;
 }

 .dsh-view-btn:hover {
     background: var(--primary, #e3982d);
     color: #fff;
     border-color: var(--primary, #e3982d);
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(227, 152, 45, 0.3);
 }

 .dsh-view-btn svg {
     width: 11px;
     height: 11px;
     flex-shrink: 0;
 }

 /* ── Mobile event cards ── */
 .dsh-mob-list {
     display: none;
 }

 .dsh-mob-event {
     padding: 14px 16px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.08);
     transition: background 0.18s ease;
 }

 .dsh-mob-event:last-child {
     border-bottom: none;
 }

 .dsh-mob-event:hover {
     background: rgba(227, 152, 45, 0.03);
 }

 .dsh-mob-top {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 8px;
     margin-bottom: 8px;
 }

 .dsh-mob-date {
     font-size: 0.72rem;
     color: var(--dark-gray, #555);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .dsh-mob-date svg {
     opacity: 0.45;
     flex-shrink: 0;
 }

 .dsh-mob-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 6px;
     margin-bottom: 12px;
 }

 .dsh-mob-stat {
     display: flex;
     flex-direction: column;
     gap: 2px;
     align-items: center;
     background: var(--white-smoke, #f2f2f2);
     border-radius: 8px;
     padding: 7px 4px;
     text-align: center;
 }

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

 .dsh-mob-stat-lbl {
     font-size: 0.6rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-gray, #555);
     line-height: 1.2;
 }

 .dsh-mob-stat.green .dsh-mob-stat-val {
     color: var(--middle-green, #478d4e);
 }

 .dsh-mob-stat.teal .dsh-mob-stat-val {
     color: var(--accent, #00616c);
 }

 .dsh-mob-stat.orange .dsh-mob-stat-val {
     color: var(--primary, #e3982d);
 }

 /* ================================================================
       CO-HOST INVITATION REQUESTS — prefix: chr-
    ================================================================ */
 .chr-section {
     margin-top: 28px;
 }

 /* ── Empty state ── */
 .chr-empty {
     padding: 40px 24px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

 .chr-empty-ico {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     background: rgba(227, 152, 45, 0.08);
     border: 1.5px solid rgba(227, 152, 45, 0.18);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     margin-bottom: 4px;
 }

 .chr-empty h4 {
     font-family: 'Syne', sans-serif;
     font-size: 0.9rem;
     font-weight: 800;
     color: var(--text, #231805);
     margin: 0;
 }

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

 /* ── Desktop table ── */
 .chr-table-scroll {
     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 18px;
     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.04);
 }

 .chr-table td {
     padding: 14px 18px;
     vertical-align: middle;
 }

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

 /* Event name cell */
 .chr-ev-name {
     font-family: 'Syne', sans-serif;
     font-size: 0.88rem;
     font-weight: 800;
     color: var(--text, #231805);
     margin-bottom: 3px;
     white-space: nowrap;
     max-width: 220px;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .chr-ev-code {
     font-size: 0.66rem;
     font-family: monospace;
     font-weight: 700;
     color: var(--accent, #00616c);
     letter-spacing: 0.4px;
 }

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

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

 .chr-status.pending {
     background: rgba(227, 152, 45, 0.12);
     color: var(--primary, #e3982d);
 }

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

 /* Action buttons */
 .chr-actions {
     display: flex;
     align-items: center;
     gap: 7px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .chr-btn {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 7px 14px;
     border-radius: 8px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.71rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     cursor: pointer;
     border: none;
     text-decoration: none;
     transition: all 0.22s ease;
     white-space: nowrap;
 }

 .chr-btn svg {
     width: 12px;
     height: 12px;
     flex-shrink: 0;
 }

 .chr-btn.accept {
     background: rgba(71, 141, 78, 0.12);
     color: var(--middle-green, #478d4e);
     border: 1.5px solid rgba(71, 141, 78, 0.25);
 }

 .chr-btn.accept:hover {
     background: var(--middle-green, #478d4e);
     color: #fff;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(71, 141, 78, 0.28);
 }

 .chr-btn.reject {
     background: rgba(220, 38, 38, 0.08);
     color: #dc2626;
     border: 1.5px solid rgba(220, 38, 38, 0.2);
 }

 .chr-btn.reject:hover {
     background: #dc2626;
     color: #fff;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
 }

 /* Invitation received date */
 .chr-date {
     font-size: 0.75rem;
     color: var(--dark-gray, #777);
 }

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

 .chr-mob-card {
     padding: 16px 18px;
     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.03);
 }

 .chr-mob-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 10px;
     margin-bottom: 10px;
 }

 .chr-mob-status-row {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 12px;
     flex-wrap: wrap;
 }

 .chr-mob-date {
     font-size: 0.68rem;
     color: var(--dark-gray, #888);
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .chr-mob-date svg {
     opacity: 0.4;
 }

 .chr-mob-actions {
     display: flex;
     gap: 8px;
 }

 .chr-mob-actions .chr-btn {
     flex: 1;
     justify-content: center;
 }

 .dsh-table-section {
     margin: 30px 0;
 }

 /* ── Responsive ── */
 @media (max-width: 860px) {
     .dsh-table-scroll {
         display: none;
     }

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

     .chr-table-scroll {
         display: none;
     }

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

 @media (max-width: 600px) {
     .dsh-welcome {
         padding: 22px 20px;
     }

     .dsh-welcome-text h1 {
         font-size: 1.4rem;
     }

     .dsh-welcome-avatar {
         width: 56px;
         height: 56px;
         font-size: 1.4rem;
     }

     .dsh-role-btns {
         grid-template-columns: 1fr;
     }

     .dsh-role-btn {
         padding: 16px 18px;
     }

     .dsh-role-icon {
         width: 42px;
         height: 42px;
         font-size: 1.2rem;
     }

     .dsh-wrap {
         padding: 18px 12px 50px;
     }
 }

 @media (max-width: 400px) {
     .dsh-mob-stats {
         grid-template-columns: repeat(2, 1fr);
     }
 }
