body {
    background-image: radial-gradient(#e2e2e27d 0%, transparent 0), radial-gradient(#e2e2e24f 23%, transparent 0);
    background-size: 32px 32px;
    background-position: 0 0, 15px 15px;
    background-color: #f3f5fd;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    position: relative;
    z-index: 1;
}

.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;
    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: #2E8875;
    box-shadow: 0 4px 15px rgba(46, 136, 117, 0.3);
}

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

.section-card-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
    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;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px 20px;
    padding-left: 25px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

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

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

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

.filter-btn {
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 6px 14px;
    gap: 6px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.filter-dropdown {
    position: fixed;
    top: auto;
    left: auto;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.filter-dropdown.show {
    display: block;
}

.filter-dropdown label {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.filter-dropdown label:hover {
    background: rgba(0, 0, 0, 0.05);
}

.filter-checkbox {
    margin-right: 8px;
}

.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: #999;
}

.clear-filters-btn {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

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

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

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

.search-input-full::placeholder {
    color: rgba(255, 182, 193, 0.8);
}

.search-icon-wrapper {
    position: absolute;
    right: 35px;
    top: 27px;
    pointer-events: none;
    z-index: 10;
    color: rgba(255, 182, 193, 0.8);
    font-size: 16px;
}

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

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

.active-filters {
    display: flex;
    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;
}

.dashboard-section {
    display: none;
}

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

.dashboard-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 15px 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    margin-bottom: 30px;
    display: none;
}

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

#eventsWorkshopsSection {
    margin-top: 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 280px));
    gap: 20px;
    justify-content: start;
}

.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: 100%;
    max-width: 280px;
}

.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, #667eea 0%, #764ba2 100%);
}

.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;
}

/* Proshow-specific card tweaks to match events layout */
#proshowContainer {
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
}

/* Make proshow action buttons inline inside cards (modal buttons remain full-width) */
.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: #e73c7e !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;
}

.card-content .proshow_actions .btn-book-seats:hover,
.card-content .proshow_actions .btn-view-tickets:hover {
    background: #d32f6a !important;
    transform: scale(1.05) !important;
}

.card-status {
    display: inline-block;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    left: 0;
    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 {
    background-color: #4CAF50;
    color: white;
}

.general-event-badge {
    background-color: #FF8C00;
    color: #1a1a1a;
}

.general-workshop-badge {
    background-color: #17A2B8;
    color: #000;
}

.payment-required-badge {
    background-color: #ff6b6b;
    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: flex;
    gap: 30px;
    align-items: start;
    justify-content: flex-start;
    width: 100%;
}

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

.prices-table-container {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    align-self: start;
    margin-top: 0;
}

.prices-title {
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 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: #ff6b6b;
    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: #2e7d32;
}

.general-event-instructions {
    flex: 0 0 280px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    align-self: start;
    margin-top: 0;
}

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

.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 {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .date-cards-container {
        width: 100%;
    }
    
    .prices-table-container {
        flex: 1;
        width: 100%;
        align-self: stretch;
    }
    
    .general-event-instructions {
        flex: 1;
        width: 100%;
        align-self: stretch;
    }
}

.date-card-square {
    aspect-ratio: 1;
    background: white;
    border-radius: 10px;
    padding: 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;
    border-color: rgba(0, 0, 0, 0.1);
}

.date-card-square.unpaid {
    background: white;
    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: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff9800;
}

.date-checkbox-unpaid:checked + .status-badge {
    background: #ff9800;
    color: white;
}

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

.date-card-square.selected {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
    border-width: 3px;
    transform: scale(1.05);
}

.date-card-square.paid.selected {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
}

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

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

.date-card-content h4 {
    color: #333;
    margin: 0;
    font-size: 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: #4caf50;
}

.btn-pay-now-large {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    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 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-pay-now-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
    background: linear-gradient(135deg, #1976d2, #1565c0);
}

.btn-pay-now-large:active {
    transform: translateY(0);
}

.accommodation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.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: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.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: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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: #4caf50;
    font-weight: 600;
}

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

.accommodation-actions {
    margin-top: 25px;
    text-align: center;
}

.btn-accommodation {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-accommodation.btn-primary {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-accommodation.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.btn-accommodation.btn-pay {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-accommodation.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.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: 10px;
    padding: 20px;
    text-align: center;
}

.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: 8px;
    padding: 20px;
    margin: 20px 0;
}

.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: #4caf50;
    font-size: 18px;
    font-weight: bold;
}

.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

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

.btn-accommodation.btn-pay:hover {
    background: #45a049;
}

.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;
    max-width: 300px;
    min-width: 250px;
}

.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;
    aspect-ratio: 1;
    min-width: 250px;
    max-width: 300px;
    width: 100%;
}

.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 {
    background: #ff9800;
    color: white;
}

.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;
}

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

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

.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);
}

.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, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
}

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

.combo-workshop-selection {
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@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: 100px;
}

.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, #4caf50, #45a049);
    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(76, 175, 80, 0.4);
}

.btn-combo-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 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: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-consent-agree:hover:not(:disabled) {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

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) {
    .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: 1fr;
        justify-content: center;
    }
    
    .event-card {
        max-width: 100%;
    }
    
    .profile-summary-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .registration-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .invitation-card {
        min-width: 200px;
        max-width: 100%;
        aspect-ratio: 1;
        flex-direction: column;
    }
    
    .team-invitations-split-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-invitations-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        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;
    }
}
