body {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 20px 0 20px;
    position: relative;
    z-index: 1;
    background: #ffffff !important;
    background-color: #ffffff !important;
    min-height: 100vh;
}

.header-profile-section {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin: 0 20px 0 auto;
    flex: 0 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-profile-details {
    display: flex;
    flex-direction: column;
}

.header-profile-details .header-user-name {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    margin: 0 0 3px 0;
    font-weight: 600;
}

.header-profile-details .yugam-id {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}

.header-profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-qr-icon-btn, .header-profile-icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-qr-icon-btn:hover, .header-profile-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.section-nav-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.section-nav-bar::-webkit-scrollbar {
    display: none;
}

.section-card {
    flex: 0 0 auto;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    min-height: 60px;
    padding: 12px 10px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 2px solid transparent;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-card.active {
    border-color: #F4B43A;
    box-shadow: 0 4px 15px rgba(244, 180, 58, 0.4);
}

.section-card-icon {
    display: none;
}

.section-card-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.section-card.active .section-card-title {
    font-weight: 700;
    color: white;
}

.section-card.active {
    background: #000;
}

.section-card .section-card-title {
}

.filter-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    align-items: center;
    min-height: 50px;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-group {
    flex: 0 0 auto;
    position: relative;
    z-index: 10001;
    scroll-snap-align: start;
    white-space: nowrap;
    margin: 0 6px;
}

.filter-group:first-child {
    margin-left: 0;
}

.filter-group:last-of-type {
    margin-right: 0;
}

@media (max-width: 768px) {
    .filter-group:first-child {
    }
}

.filter-btn {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover {
    /* Darker on hover */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.03);
}

.clear-filters-btn {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 6px;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.4);
    transform: translateY(-1px);
}

.filter-dropdown {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 10px !important;
    padding: 6px !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: 220px !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 10002 !important;
    white-space: nowrap !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

.filter-dropdown.show {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.filter-dropdown label {
    display: flex;
    align-items: center;
    padding: 6px 10px !important;
    margin: 2px 0 !important;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    /* BLACK TEXT COLOR */
    color: #000000 !important;
    font-size: 14px !important;
    min-height: 32px !important;
    line-height: 1.4 !important;
    font-weight: 500;
}

.filter-dropdown label:hover {
    background: rgba(244, 180, 58, 0.1);
    box-shadow: 0 2px 8px rgba(244, 180, 58, 0.25);
}

.filter-checkbox {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
    cursor: pointer;
    accent-color: #000000 !important;
}

.filter-checkbox:checked {
    accent-color: #000000 !important;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
}

.search-input::placeholder {
    color: #E85D04;
}


.filter-bar::-webkit-scrollbar {
    display: none;
}

.search-bar-container {
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    box-shadow: none;
    border: none;
    display: none;
}

@media (min-width: 769px) {
    .search-bar-container {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 12px;
        margin-bottom: 22px;
    }
}

.search-input-full {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input-full:focus {
    outline: none;
    border-color: rgba(150, 150, 150, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.search-input-full::placeholder {
    color: #E85D04;
}

.search-icon-wrapper {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    color: #999;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-stats-label {
    margin-top: 8px;
    text-align: left;
}

.search-stats-label span {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.active-filters {
    display: none; /* Hide by default, JavaScript will show when filters exist */
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.filter-chip {
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.filter-chip .remove {
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    margin-left: 4px;
}

.dashboard-sections {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

@media (min-width: 769px) {
    .dashboard-sections {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.dashboard-section {
    display: none;
}

.dashboard-section.active-section {
    display: block;
}

.dashboard-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 30px;
    display: none;
}

.dashboard-section.active-section {
    display: block;
}

.login-required-message .btn,
.login-required-message .btn-primary {
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.login-required-message .btn:focus,
.login-required-message .btn-primary:focus,
.login-required-message .btn:active,
.login-required-message .btn-primary:active {
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.12) !important;
}

#eventsWorkshopsSection {
    margin-top: 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
    gap: 35px;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    flex-shrink: 0;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.type-badge.workshop-badge {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.type-badge.combo-badge {
    background: #9c27b0;
    color: white;
}

.type-badge.conclave-badge {
    background: #607d8b;
    color: white;
}

.payment-badge.black-badge {
    background: #000000 !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    top: 50px;
    right: 15px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 15px;
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
}

#proshowSection .event-card {
    max-width: 320px;
}

#proshowSection .event-card img,
#proshowSection .card-image {
    height: 420px;
    object-fit: cover;
}

#proshowSection .card-image-placeholder {
    height: 420px;
}

@media (max-width: 768px) {
    #proshowSection .event-card {
        max-width: 300px;
    }
    
    #proshowSection .event-card img,
    #proshowSection .card-image {
        height: 380px;
    }
    
    #proshowSection .card-image-placeholder {
        height: 380px;
    }
}

@media (max-width: 480px) {
    #proshowSection .event-card {
        max-width: 280px;
    }
    
    #proshowSection .event-card img,
    #proshowSection .card-image {
        height: 340px;
    }
    
    #proshowSection .card-image-placeholder {
        height: 340px;
    }
}

.card-content {
    padding: 15px;
    position: relative;
    min-height: 120px;
}

.card-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.card-subtitle {
    color: #666;
    font-size: 13px;
    margin: 0 0 12px 0;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    color: #888;
    font-size: 12px;
}

#proshowContainer {
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
}

.card-content .proshow_actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.card-content .proshow_actions .btn-book-seats,
.card-content .proshow_actions .btn-view-tickets {
    width: auto !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-align: center !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.card-content .proshow_actions .btn-book-seats:hover,
.card-content .proshow_actions .btn-view-tickets:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15) !important;
}

.card-status {
    display: inline-block !important;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    width: auto !important;
    min-width: fit-content !important;
    max-width: 200px !important;
    white-space: nowrap !important;
    left: 0;
    right: auto !important;
    padding: 6px 16px 6px 10px;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    text-transform: capitalize;
}

.card-status strong {
    font-weight: 600;
}

.paid-event-badge, .paid-workshop-badge {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    width: auto !important;
    min-width: fit-content !important;
    max-width: 180px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    right: auto !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.general-event-badge {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    width: auto !important;
    min-width: fit-content !important;
    max-width: 180px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    right: auto !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.general-workshop-badge {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    width: auto !important;
    min-width: fit-content !important;
    max-width: 180px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    right: auto !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.payment-required-badge {
    background-color: #F4B43A;
    color: white;
}

.paid-badge {
    background-color: #51cf66;
    color: white;
}

.available-badge {
    background-color: #74c0fc;
    color: white;
}

.paid-status {
    background: rgba(255, 152, 0, 0.15);
    color: #f57c00;
}

.free-status {
    background: rgba(76, 175, 80, 0.15);
    color: #388e3c;
}

.registrations-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.registration-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.registration-info h4 {
    color: #333;
    margin: 0 0 10px 0;
}

.registration-info p {
    color: #666;
    margin: 5px 0;
    font-size: 13px;
}

.registration-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-pay, .btn-view {
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-pay {
    background: #4caf50;
    color: white;
}

.btn-pay:hover {
    background: #45a049;
    transform: scale(1.05);
}

.btn-view {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.btn-view:hover {
    background: rgba(0, 0, 0, 0.1);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.paid {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.status-badge.registered {
    background: rgba(33, 150, 243, 0.15);
    color: #1976d2;
}

.status-badge.unpaid {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.general-event-payment-container {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(280px, 600px) minmax(280px, 350px);
    gap: 20px;
    align-items: start;
    width: 100%;
}

.date-cards-container {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    align-content: start;
}

.date-card-instructions {
    grid-column: 2;
    flex: none;
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.prices-table-container {
    grid-column: 3;
    flex: none;
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    align-self: start;
}

.general-event-instructions {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.prices-title {
    text-align: center;
    color: #333;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    margin: 0 0 clamp(15px, 3vw, 20px) 0;
    padding-top: 0;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table thead {
}

.prices-table thead tr th {
    padding: 12px;
    text-align: center;
    background: #F4B43A;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #d32f2f;
}

.prices-table thead tr th:first-child {
    width: 40%;
}

.prices-table thead tr th:last-child {
    width: 60%;
}

.prices-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.prices-table tbody tr td {
    padding: 10px 12px;
    text-align: center;
    color: #333;
    font-size: 14px;
}

.prices-table tbody tr td:first-child {
    font-weight: 500;
}

.prices-table tbody tr td:last-child {
    font-weight: 600;
    color: #000000;
}

.general-event-instructions .btn-primary:hover {
    background: linear-gradient(135deg, #E89B2A 0%, #D88A1F 100%) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-2px);
}

.date-card-instructions .instruction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.6;
}

.date-card-instructions .instruction-item:first-child {
    margin-top: 0;
}

.date-card-instructions .instruction-item:last-child {
    margin-bottom: 0;
}

.date-card-instructions .instruction-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.instruction-text {
    font-weight: 500;
    font-size: 13px;
    margin: 8px 0;
    line-height: 1.5;
    color: #000000;
}

.instruction-text:first-child {
    margin-top: 0;
    padding-top: 0;
}

.instruction-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .general-event-payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .date-cards-container {
        grid-column: 1;
        grid-template-columns: repeat(auto-fill, minmax(clamp(80px, 20vw, 120px), 1fr));
    }
    
    .date-card-instructions {
        grid-column: 1;
    }
    
    .prices-table-container {
        grid-column: 1;
    }
    
    .general-event-instructions {
        grid-column: 1;
    }
    
    /* Keep checkbox size constant even when date cards shrink */
    .date-checkbox-unpaid {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px;
        min-height: 20px;
        flex-shrink: 0;
    }
    
    /* Adjust date card content for smaller screens */
    .date-card-content h4 {
        font-size: clamp(10px, 2.5vw, 14px) !important;
    }
    
    .status-badge {
        font-size: clamp(9px, 2vw, 11px) !important;
        padding: clamp(4px, 1vw, 6px) clamp(6px, 1.5vw, 8px) !important;
    }
}

@media (max-width: 480px) {
    .date-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(clamp(70px, 18vw, 100px), 1fr)) !important;
    }
    
    /* Ensure checkbox stays same size on very small screens */
    .date-checkbox-unpaid {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }
    
    .date-checkbox-unpaid:checked::after {
        font-size: 12px !important;
    }
    
    .date-card-content h4 {
        font-size: clamp(9px, 2.2vw, 12px) !important;
        line-height: 1.2 !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    /* For tablets and medium screens, keep checkbox at 20px but allow cards to scale */
    .date-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(clamp(90px, 22vw, 130px), 1fr)) !important;
    }
    
    .date-checkbox-unpaid {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }
}

.date-card-square {
    aspect-ratio: 1;
    background: white;
    border-radius: clamp(6px, 1.5vw, 10px);
    padding: clamp(8px, 1.8vw, 12px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    min-height: 0;
    position: relative;
}

.date-card-square:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.date-card-square.paid {
    background: white !important;
    border-color: rgba(0, 0, 0, 0.1);
}

.date-card-square.unpaid {
    background: white !important;
    border-color: rgba(0, 0, 0, 0.1);
}

.date-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
    width: 100%;
}

.date-checkbox-unpaid {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.date-checkbox-unpaid:checked {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    border: 2px solid transparent !important;
}

.date-checkbox-unpaid:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.date-checkbox-unpaid:checked + .status-badge {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    color: white !important;
    border: none !important;
}

.date-card-square.selectable {
    cursor: pointer;
}

.date-card-square.selected,
.date-card-square.unpaid.selected,
input[type="checkbox"]:checked ~ .date-card-square,
.date-card-square:has(input[type="checkbox"]:checked) {
    position: relative !important;
    transform: scale(1.05) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    background: white !important;
}

.date-card-square.selected::before,
.date-card-square.unpaid.selected::before,
.date-card-square.paid.selected::before {
    content: '' !important;
    position: absolute !important;
    inset: -3px !important;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    border-radius: clamp(8px, 2vw, 12px) !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.date-card-square.selected::after,
.date-card-square.unpaid.selected::after,
.date-card-square.paid.selected::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: white !important;
    border-radius: clamp(6px, 1.5vw, 10px) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.date-card-square.selected .date-card-content h4,
.date-card-square.selected .date-card-content p {
    color: #333 !important;
}

.date-card-square.selected .status-badge {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    color: white !important;
    border: none !important;
}

.date-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.date-card-content .status-badge {
    margin: 0;
    flex-shrink: 0;
}

.date-card-content h4 {
    color: #333;
    margin: 0;
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-events-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.general-events-list h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.payment-cta-container {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-info {
    flex: 1;
    min-width: 200px;
}

.payment-info p {
    margin: 5px 0;
    color: #333;
}

.payment-info .payment-amount {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.btn-pay-now-large {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    color: white !important;
    border: none !important;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
}

.btn-pay-now-large:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-pay-now-large:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
}

.accommodation-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(0px, 3vw, 24px);
    display: flex;
    justify-content: center;
    width: 100%;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(0px, 3vw, 16px);
    padding: clamp(20px, 4vw, 30px);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: min(600px, 100%);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.accommodation-card-full {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.accommodation-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.accommodation-instructions {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(0px, 3vw, 15px);
    padding: clamp(20px, 4vw, 30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    height: 100%;
    width: 100%;
}

.accommodation-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(0px, 3vw, 15px);
    padding: clamp(20px, 4vw, 30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.accommodation-instructions h3,
.accommodation-form-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.instructions-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.instructions-content h4 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.instructions-content h4:first-child {
    margin-top: 0;
}

.instructions-content h5 {
    color: #555;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.instructions-content ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.instructions-content li {
    margin-bottom: 10px;
}

.instructions-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.instructions-content a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.instructions-content a:hover {
    text-decoration: underline;
}

.accommodation-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.pending-booking-message {
    text-align: center;
    padding: 40px 20px;
}

.pending-booking-message h3 {
    color: #333;
    margin-bottom: 15px;
}

.pending-booking-message p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.accommodation-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.accommodation-details {
    margin: clamp(15px, 3.5vw, 20px) 0;
    width: 100%;
}

.detail-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-label,
.detail-value {
    white-space: nowrap;
}


.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #333;
    font-weight: 500;
}

.detail-value.paid-status {
    color: #000000;
    font-weight: 600;
    background: none !important; 
}

.detail-value.unpaid-status {
    color: #ff9800;
    font-weight: 600;
    background: none !important; 
}

.accommodation-actions {
    display: flex;
    gap: 14px;
    width: 100%;
    margin-top: 20px;
    position: static;
}

.accommodation-actions form {
    flex: 1;
    display: flex;
}

.accommodation-actions > * {
    flex: 1;
}

.accommodation-actions .btn-accommodation {
    padding: 14px 30px;
    font-size: 14px;
    line-height: 1.5;
    min-height: 50px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.btn-accommodation {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 50px;
    text-align: center;
    white-space: nowrap;
}

.btn-accommodation.btn-primary {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-accommodation.btn-primary:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.btn-accommodation.btn-pay {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-accommodation.btn-pay:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.accommodation-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.accommodation-form {
    margin-top: 20px;
}

.accommodation-form .form-group {
    margin-bottom: 20px;
}

.accommodation-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.accommodation-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

.accommodation-form .form-control:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.accommodation-form .error-message {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
}

.accommodation-form .required {
    color: #f44336;
}

.accommodation-terms {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accommodation-terms h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

.accommodation-terms ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 13px;
}

.accommodation-terms li {
    margin-bottom: 8px;
}

.payment-info-box {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: clamp(0px, 2.5vw, 10px);
    padding: clamp(15px, 3.5vw, 20px);
    text-align: center;
    width: 100%;
}

.payment-info-box h4 {
    color: #4caf50;
    margin-bottom: 10px;
    font-size: 18px;
}

.payment-info-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.booking-details-summary {
    background: #f9f9f9;
    border-radius: clamp(0px, 2vw, 8px);
    padding: clamp(15px, 3.5vw, 20px);
    margin: clamp(15px, 3.5vw, 20px) 0;
    width: 100%;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.amount-row {
    border-top: 2px solid #4caf50;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: bold;
}

.detail-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-size: 14px;
    text-align: right;
}

.detail-value.amount {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
}

.booking-actions {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.booking-actions > * {
    flex: 1;
}

.booking-actions form {
    flex: 1;
    display: flex;
}

.booking-actions .btn-accommodation {
    padding: 14px 30px;
    font-size: 14px;
    line-height: 1.5;
    min-height: 50px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.btn-accommodation.btn-pay {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    flex: 1;
}

.btn-accommodation.btn-pay:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
}

.btn-accommodation.btn-cancel {
    background: #f44336;
    color: white;
    flex: 1;
}

.btn-accommodation.btn-cancel:hover {
    background: #da190b;
}

#bookRoomBtn:disabled,
#payBookingBtn:disabled,
#cancelBookingBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.proshow-carousel-container {
    padding: 20px 0;
}

.proshow_img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.proshow_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.proshow_img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
}

.proshow_img figcaption h2 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.proshow_img figcaption .speackarprofile_detail {
    margin-bottom: 15px;
}

.proshow_img figcaption .speackarprofile_detail span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.proshow_img figcaption a {
    display: inline-block;
    background: #e73c7e;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.proshow_img figcaption a:hover {
    background: #d32f6a;
    transform: scale(1.05);
}

.registered-status {
    background: rgba(33, 150, 243, 0.15);
    color: #1976d2;
}

.empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

.team-invitations-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.team-invitations-left,
.team-invitations-right {
    display: flex;
    flex-direction: column;
}

.team-invitations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: start;
}

.active-team-card {
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 152, 0, 0.05);
    aspect-ratio: auto !important;
    padding: 12px 15px !important;
    min-height: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.invitation-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 15px;
    min-height: 380px;
    width: 100%;
    height: auto;
}

.invitation-info {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.active-team-card .invitation-info {
    gap: 6px;
    flex: 0 0 auto;
}

.invitation-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 5px;
}

.active-team-card .invitation-badge {
    margin-bottom: 4px;
}

.invitation-badge.event-badge,
.invitation-badge.workshop-badge {
    background: #ff9800;
    color: white;
}

.invitation-info h4 {
    color: #333;
    margin: 0;
    font-size: 18px;
}

.active-team-card .invitation-info h4 {
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}

.invitation-info p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.5;
}

.active-team-card .invitation-info p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    color: #333 !important;
}

.invitation-info p strong {
    color: inherit;
}

.active-team-card .invitation-info p strong {
    color: #333 !important;
}

.active-team-card .invitation-info p,
.active-team-card .invitation-info p strong,
.active-team-card .invitation-info p a {
    color: #333 !important;
    text-decoration: none !important;
}

.invitation-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.active-team-card .invitation-actions {
    display: none;
    margin-top: 0;
    height: 0;
}

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
    transform: scale(1.02);
}

.btn-decline {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.btn-decline:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.team-members-section {
    width: 100%;
    margin-top: 10px;
}

.members-label {
    font-size: 13px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #333;
}

.team-members-table-wrapper {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: auto;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: white;
    -webkit-overflow-scrolling: touch;
}

.team-members-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 12px;
    min-width: 100%;
}

.team-members-table thead {
    position: sticky;
    top: 0;
    background: #ff9800;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-members-table th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.team-members-table th:nth-child(1) {
    width: 40%;
    min-width: 100px;
}

.team-members-table th:nth-child(2) {
    width: 30%;
    min-width: 90px;
}

.team-members-table th:nth-child(3) {
    width: 30%;
    min-width: 80px;
}

.team-members-table th:last-child {
    border-right: none;
}

.team-members-table tbody tr {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease;
}

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

.team-members-table tbody tr:hover {
    background: #f8f8f8;
}

.team-members-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.team-members-table tbody tr:nth-child(even):hover {
    background: #f5f5f5;
}

.team-members-table td {
    padding: 12px 10px;
    color: #333;
    line-height: 1.4;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-members-table td:last-child {
    border-right: none;
}

.team-members-table .member-name {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.team-members-table .member-id {
    color: #666;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.status-approved {
    background: #4caf50;
    color: white;
}

.status-badge.status-pending {
    background: #ffa726;
    color: white;
}

.team-members-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.team-members-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.team-members-table-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.team-members-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

#teamInvitationsSection .team-invitations-split-container {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 30px;
    align-items: start;
}

#teamInvitationsSection .team-invitations-left,
#teamInvitationsSection .team-invitations-right {
    width: 100%;
    min-width: 0;
}

#teamInvitationsSection .invitation-card,
#teamInvitationsSection .active-team-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    height: auto;
    position: relative;
    isolation: isolate;
}

#teamInvitationsSection .invitation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#teamInvitationsSection .team-members-table-wrapper {
    max-height: 220px;
    overflow-x: auto;
    overflow-y: auto;
}

#teamInvitationsSection .team-members-table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
    border-collapse: separate;
}

#teamInvitationsSection .team-members-table th,
#teamInvitationsSection .team-members-table td,
#teamInvitationsSection .team-members-table .member-name,
#teamInvitationsSection .team-members-table .member-id {
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
}

#teamInvitationsSection .team-members-table th,
#teamInvitationsSection .team-members-table td {
    padding: 10px 12px;
}

#teamInvitationsSection .team-members-table th {
    width: auto !important;
    min-width: max-content !important;
}

@media (max-width: 980px) {
    #teamInvitationsSection .team-invitations-split-container {
        grid-template-columns: 1fr;
    }

    #teamInvitationsSection .invitation-card,
    #teamInvitationsSection .active-team-card {
        margin-bottom: 16px;
    }

    #teamInvitationsSection .team-invitations-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 420px) {
    #teamInvitationsSection .team-members-table-wrapper {
        max-height: 180px;
    }

    #teamInvitationsSection .invitation-actions > * {
        flex: 1 1 100%;
    }
}

.certificates-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.certificate-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.certificate-info h4 {
    color: #333;
    margin: 0 0 10px 0;
}

.certificate-info p {
    color: #666;
    margin: 0;
    font-size: 13px;
}

.btn-download {
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-download:hover {
    background: #1976d2;
    transform: scale(1.02);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.qr-image {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

.qr-modal {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-modal h3 {
    margin-bottom: 20px;
    color: #333;
}

.profile-details-modal {
    display: flex;
    flex-direction: column;
}

.profile-details-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.profile-details-content {
    padding: 20px 0;
}

.profile-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-item:last-of-type {
    border-bottom: none;
}

.profile-item .cardTitle {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
}

.profile-item .cardSubTitle {
    color: #333;
    font-size: 16px;
    margin: 0;
}

.profile-actions-modal {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-edit-profile, .btn-logout {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-edit-profile {
    background: #2196f3;
    color: white;
}

.btn-edit-profile:hover {
    background: #1976d2;
    transform: scale(1.02);
}

.btn-logout {
    background: #f44336;
    color: white;
}

.btn-logout:hover {
    background: #d32f2f;
    transform: scale(1.02);
}

.event-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.event-detail-overlay.show {
    transform: translateY(0);
}

.event-detail-overlay.minimized {
    transform: translateY(calc(100% - 60px));
}

.overlay-header {
    background: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.overlay-header h3 {
    margin: 0;
    color: #333;
}

.overlay-actions {
    display: flex;
    gap: 10px;
}

.btn-minimize, .btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-minimize:hover, .btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.overlay-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.minimized-overlay-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 10001;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.minimized-overlay-bar.show {
    transform: translateY(0);
}

.btn-expand {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.date-selection-modal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.date-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.date-checkbox-label:hover {
    background: rgba(0, 0, 0, 0.05);
}

.payment-summary {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.btn-pay-now, .btn-continue-payment, .btn-save {
    width: 100%;
    padding: 15px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-pay-now:hover, .btn-continue-payment:hover, .btn-save:hover {
    background: #45a049;
    transform: scale(1.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}


.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
}


.form-group select {
    width: 100%;
    min-height: 50px !important;
    padding: 12px 16px !important;
    line-height: 1.6 !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px;
    font-size: 16px !important;
    box-sizing: border-box !important;
    cursor: pointer;
    /* BLACK TEXT COLOR */
    color: #000000 !important;
    font-weight: 500;
}

.form-group select:focus {
    border-color: #F4B43A !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-group select option {
    padding: 14px 16px !important;
    font-size: 16px !important;
    min-height: 48px !important;
    line-height: 1.5 !important;
    /* BLACK TEXT COLOR */
    color: #000000 !important;
    font-weight: 500;
    background: #ffffff;
}


.combo-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
}

.combo-card-wrapper.expanded {
    max-width: none;
    grid-column: 1 / -1;
}

.combo-card-wrapper .event-card {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    flex-shrink: 0;
}

.combo-workshop-selection {
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-out;
    width: 100%;
}

@media (max-width: 768px) {
    .combo-workshop-selection {
        padding: 15px;
    }
    
    .combo-card-wrapper.expanded {
        max-width: 100%;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workshop-selection-content {
    width: 100%;
}

.workshop-selection-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.workshop-selection-info {
    color: #666;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.workshop-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.workshop-date-column {
    display: flex;
    flex-direction: column;
}

.workshop-date-column h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.combo-workshop-select {
    width: 100%;
    min-height: 120px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px;
    box-sizing: border-box !important;
    /* BLACK TEXT COLOR */
    color: #000000 !important;
    font-weight: 500;
}

.combo-workshop-select:focus {
    border-color: #F4B43A !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.combo-workshop-select option {
    padding: 14px 16px !important;
    font-size: 16px !important;
    min-height: 48px !important;
    line-height: 1.5 !important;
    /* BLACK TEXT COLOR */
    color: #000000 !important;
    font-weight: 500;
    background: #ffffff;
}

.combo-amount-display {
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.amount-text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.amount-text s {
    color: #999;
    margin-right: 10px;
}

.btn-combo-payment {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-combo-payment:hover {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-combo-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-workshops {
    text-align: center;
    color: #666;
    padding: 40px;
    font-size: 16px;
}

.error-message {
    text-align: center;
    color: #d32f2f;
    padding: 40px;
    font-size: 16px;
    font-weight: 600;
}

.accommodation-consent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.accommodation-consent-modal[style*="flex"],
.accommodation-consent-modal[style*="display: flex"],
.accommodation-consent-modal[style*="display:flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
}

.consent-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    display: flex !important;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.consent-modal-header {
    padding: 18px 20px;
    background: #000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consent-modal-header h3 {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.consent-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(85vh - 160px);
    box-sizing: border-box;
}

.instructions-content-compact {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
}

.instructions-content-compact h4 {
    color: #000;
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.instructions-content-compact h5 {
    color: #666;
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.instructions-content-compact ul {
    margin: 6px 0;
    padding-left: 18px;
}

.instructions-content-compact li {
    margin: 4px 0;
    color: #555;
    font-size: 13px;
}

.instructions-content-compact a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #000;
}

.instructions-content-compact a:hover {
    text-decoration: underline;
}

.instructions-content-compact p {
    margin: 8px 0;
    font-size: 13px;
}

.consent-modal-footer {
    padding: 18px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    border-radius: 0 0 12px 12px;
}

.consent-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    flex: 1;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
}

.consent-checkbox-label span {
    user-select: none;
}

.btn-consent-agree {
    padding: 12px 30px;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-consent-agree:hover:not(:disabled) {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.btn-consent-agree:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-agree {
    padding: 12px 30px !important;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.btn-agree:hover:not(:disabled) {
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15) !important;
}

.btn-agree:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none;
    pointer-events: none !important;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .section-nav-bar,
body.modal-open .filter-bar,
body.modal-open .search-bar-container,
body.modal-open .cards-container,
body.modal-open .dashboard-sections,
body.modal-open .active-filters,
body.modal-open .dashboard-section {
    opacity: 0.5;
    pointer-events: none;
    filter: blur(4px);
    transition: opacity 0.3s ease, filter 0.3s ease;
}


@media (max-width: 768px) {
    #studentAmbassadorSection .detail-item {
        grid-template-columns: 90px 1fr;
        align-items: flex-start;
    }

    #studentAmbassadorSection .detail-value {
        white-space: normal;
        word-break: break-word;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .consent-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .consent-modal-header {
        padding: 20px;
    }
    
    .consent-modal-header h2 {
        font-size: 20px;
    }
    
    .consent-modal-body {
        padding: 20px;
        max-height: calc(95vh - 160px);
    }
    
    .consent-modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-consent-agree {
        width: 100%;
    }
}

@media (max-width: 768px) {
    
    .dashboard-container {
    }
    
    .filter-bar {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        padding-right: 15px !important;
        margin-right: 0 !important;
    }
    
    .filter-group:first-child {
        margin-left: 0 !important;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
        justify-content: center;
        padding: 0 10px;
    }
    
    .event-card {
        width: 280px !important;
        max-width: 280px !important;
        min-width: 280px !important;
    }
    
    .profile-summary-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .registration-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .overlay-content {
        padding: 20px;
    }
}

.hidden {
    display: none !important;
}

@media (max-width: 968px) {
    .accommodation-split-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accommodation-details-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions-content {
        max-height: none;
    }
}

.section-nav-wrapper,
.filter-bar-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-scroll-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-scroll-btn.disabled,
.nav-scroll-btn.hidden {
    display: none;
    pointer-events: none;
}

.nav-scroll-btn i {
    color: #333;
    transition: color 0.3s ease;
  }
}

@media (max-width: 768px) {
    .accommodation-card {
        border-radius: 0;
        margin: 0;
        padding: 20px;
        box-shadow: none;
    }
    
    .accommodation-instructions,
    .accommodation-form-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .dashboard-section,
    #studentAmbassadorSection {
        border-radius: 0;
        padding: 20px;
        box-shadow: none;
        margin-bottom: 0;
    }
}

@media (max-width: 420px) {
    .accommodation-form-container,
    .accommodation-instructions {
        padding: 15px !important;
    }
}

@media (max-width: 768px) {
    #accommodationSection,
    #studentAmbassadorSection {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #studentAmbassadorSection .accommodation-container,
    #accommodationSection .accommodation-container {
        max-width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .accommodation-container {
        max-width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .accommodation-instructions,
    .accommodation-form-container {
        padding: 20px !important;
        margin: 0 !important;
        border-radius: 15px;
        box-shadow: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .booking-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .booking-actions .btn-accommodation {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
        line-height: 1.5;
        min-height: 50px;
    }

    .booking-actions .btn-accommodation.btn-pay {
        order: 0;
    }

    .booking-actions .btn-accommodation.btn-cancel {
        order: 1;
    }
    
    .accommodation-actions {
        flex-direction: column;
    }
    
    .accommodation-actions .btn-accommodation {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
        line-height: 1.5;
        min-height: 50px;
    }
}

@media (max-width: 360px) {
    .booking-details-summary .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .booking-details-summary .detail-row span {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
}


@media (max-width: 400px) {
    .nav-scroll-btn,
    #navScrollLeft,
    #navScrollRight,
    #filterScrollLeft,
    #filterScrollRight {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .section-nav-wrapper,
    .filter-bar-wrapper {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;  /* Changed to allow dropdowns to show */
    }
    
    .section-nav-bar {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }
    
    .filter-bar {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }
    
    .section-nav-bar,
    .filter-bar {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .section-card,
    .filter-group {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

@media (min-width: 401px) and (max-width: 768px) {
    .nav-scroll-btn {
        display: flex !important;
        width: 34px;
        height: 34px;
        border-width: 1.5px;
    }
    
    .nav-scroll-btn-left {
        left: 8px;
    }
    
    .nav-scroll-btn-right {
        right: 8px;
    }
    
    .nav-scroll-btn i {
        font-size: 15px;
    }
    
    .section-nav-wrapper {
        padding: 0 45px;
        max-width: 100%;
    }
    
    .filter-bar-wrapper {
        padding: 0 45px;
        max-width: 100%;
    }
    
    .section-nav-bar {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    
    .filter-bar {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}

@media (min-width: 769px) and (max-width: 1499px) {
    .nav-scroll-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .nav-scroll-btn-left {
        left: 10px;
    }
    
    .nav-scroll-btn-right {
        right: 10px;
    }
    
    .nav-scroll-btn i {
        font-size: 18px;
    }
    
    .section-nav-wrapper {
        padding: 0 55px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-bar-wrapper {
        padding: 0 65px;
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-bar-wrapper.no-scroll {
        padding: 0;
    }
    
    .section-nav-bar {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .filter-bar {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
}


@media (min-width: 1500px) {

    .nav-scroll-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    

    .nav-scroll-btn-left {
        left: -50px;
    }
    
    .nav-scroll-btn-right {
        right: -50px;
    }
    
    .nav-scroll-btn i {
        font-size: 18px;
    }
    

    .section-nav-wrapper {
        padding: 0;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-bar-wrapper {
        padding: 0 60px;
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-bar-wrapper.no-scroll {
        padding: 0;
    }
    

    .section-nav-bar {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .filter-bar {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
}
/* ============================================
   ACTIVE FILTERS SECTION - NO OUTER CONTAINER
   ============================================ */
.active-filters-wrapper {
    /* Transparent wrapper - no outer colored box */
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 15px 15px 15px 20px;
    animation: slideDown 0.3s ease-out;
    box-shadow: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-filters-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent !important; /* No white/grey background */
    width: 100%;
}

.active-filters-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.5) transparent;
    background: transparent !important; /* No white/grey background */
}

.active-filters-scroll::-webkit-scrollbar {
    height: 6px;
}

.active-filters-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.active-filters-scroll::-webkit-scrollbar-thumb {
    /* Event Detail Page Gradient: Rose Red → Vibrant Orange */
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    border-radius: 3px;
}

.active-filters-scroll::-webkit-scrollbar-thumb:hover {
    /* Reverse gradient on hover */
    background: linear-gradient(135deg, #E89B2A 0%, #F4B43A 100%);
}

.active-filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    min-height: 32px;
    background: transparent !important; /* No white/grey background */
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #F4B43A 0%, #E89B2A 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(244, 180, 58, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.active-filter-tag:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(244, 180, 58, 0.4);
}

.active-filter-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.active-filter-remove-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.active-filters-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(244, 180, 58, 0.15);
    border: 2px solid rgba(244, 180, 58, 0.4);
    border-radius: 20px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(244, 180, 58, 0.15);
}

.active-filters-clear-btn:hover {
    background: rgba(244, 180, 58, 0.3);
    color: #333;
    border-color: rgba(244, 180, 58, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(244, 180, 58, 0.3);
}

.active-filters-clear-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .active-filters-wrapper {
        margin: 12px 15px;
        padding: 10px 12px;
    }
    
    .active-filter-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .active-filters-clear-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Responsive Dropdown Improvements for Mobile */
    .form-group select {
        font-size: 14px !important;
        min-height: 46px !important;
        padding: 10px 14px !important;
    }
    
    .form-group select option {
        padding: 12px 14px !important;
        font-size: 14px !important;
        min-height: 44px !important;
    }
    
    .combo-workshop-select {
        min-height: 100px !important;
        padding: 10px 14px !important;
        font-size: 14px !important;
    }
    
    .combo-workshop-select option {
        padding: 12px 14px !important;
        font-size: 14px !important;
        min-height: 44px !important;
    }
    
    .filter-dropdown label {
        padding: 8px 12px !important;
        font-size: 13px !important;
        min-height: 34px !important;
    }
    
    .filter-checkbox {
        width: 16px !important;
        height: 16px !important;
        margin-right: 8px !important;
        accent-color: #000000 !important;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 575px) {
    .form-group select {
        font-size: 14px !important;
        min-height: 44px !important;
        padding: 10px 12px !important;
    }
    
    .form-group select option {
        padding: 12px !important;
        font-size: 14px !important;
        min-height: 42px !important;
    }
    
    .combo-workshop-select {
        min-height: 90px !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    
    .combo-workshop-select option {
        padding: 10px 12px !important;
        font-size: 14px !important;
        min-height: 42px !important;
    }
    
    .filter-dropdown label {
        padding: 6px 10px !important;
        font-size: 13px !important;
        min-height: 32px !important;
    }
    
    .filter-checkbox {
        width: 15px !important;
        height: 15px !important;
        margin-right: 8px !important;
        accent-color: #000000 !important;
    }
}

/* Large screens - optimal sizing */
@media (min-width: 1200px) {
    .form-group select {
        font-size: 16px !important;
        min-height: 52px !important;
        padding: 14px 18px !important;
    }
    
    .form-group select option {
        padding: 16px 18px !important;
        font-size: 16px !important;
        min-height: 50px !important;
    }
    
    .combo-workshop-select {
        min-height: 130px !important;
        padding: 14px 18px !important;
        font-size: 16px !important;
    }
    
    .combo-workshop-select option {
        padding: 16px 18px !important;
        font-size: 16px !important;
        min-height: 50px !important;
    }
    
    .filter-dropdown label {
        padding: 6px 12px !important;
        font-size: 14px !important;
        min-height: 34px !important;
    }
    
    .filter-checkbox {
        width: 16px !important;
        height: 16px !important;
        margin-right: 8px !important;
        accent-color: #000000 !important;
    }
}
