/* Business Dashboard Styles - Extends admin.css */

/* Simple Header */
.simple-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.simple-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.header-home-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-home-btn:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
}

/* Login Screen - Business Theme */
.business-login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-color) 100%);
}

.login-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 3rem;
    text-shadow: 
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px 2px 0 #fff,
        -2px 0 0 #fff,
        2px 0 0 #fff,
        0 -2px 0 #fff,
        0 2px 0 #fff;
}

.login-header .subtitle {
    color: white;
}

.auth-step {
    transition: all 0.3s ease;
}

.verification-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.verification-info i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.verification-info p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.verification-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: white;
    font-style: normal;
    font-weight: 500;
}

.error-message {
    display: none;
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #c41d15;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.error-message.show {
    display: block;
}

#verificationCode {
    text-align: center;
    letter-spacing: 8px;
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-link {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    margin-top: 10px;
    font-family: var(--font-body);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.button-group .btn,
.button-group .btn-link {
    flex: 1;
    margin-top: 0;
}

/* Field Sections */
.field-section {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    border: 1px solid #dee2e6;
}

.field-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.field-hint {
    color: #6c757d;
    font-size: 0.9rem;
    margin: -10px 0 20px 0;
    font-style: italic;
}

/* Business Hours Editor */
.hours-editor {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid #dee2e6;
}

.hours-label {
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
}

.hours-label .day-closed {
    cursor: pointer;
}

.hours-label .day-name {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.hours-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.time-input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    width: 140px;
}

.time-input:disabled {
    background: #e9ecef;
    cursor: not-allowed;
}

.hours-inputs span {
    color: #6c757d;
    font-weight: 500;
}

#saveHoursBtn {
    margin-top: 10px;
    align-self: flex-end;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.category-checkbox:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.category-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.category-checkbox input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.category-checkbox span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
}

#saveCategoriesBtn {
    margin-top: 10px;
}

/* Dashboard Header */
.business-dashboard {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--gray-light);
}

.dashboard-header-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 100;
    padding: 15px 0;
}

.dashboard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-business-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

..dashboard-header-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.dashboard-subtitle {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
}

.upload-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 8px 0;
    font-style: italic;
}

.section-subtitle {
    text-align: center !important;
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Modern Section Header with Button */
.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    gap: 20px;
}

.section-header-modern .header-left {
    flex: 1;
}

.section-header-modern .header-left .section-title {
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-modern .header-left .section-subtitle {
    margin: 0;
    text-align: left !important;
    font-size: 1rem;
    color: #6c757d;
}

.section-header-modern .header-right {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.membership-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-badge.bronze {
    background: #cd7f32;
    color: white;
}

.membership-badge.silver {
    background: #c0c0c0;
    color: #333;
}

.membership-badge.gold {
    background: #ffd700;
    color: #333;
}

.membership-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #a8a8a8 100%);
    color: #333;
}

.btn-upload-event {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(196, 29, 21, 0.3);
    transition: all 0.3s ease;
}

.btn-upload-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 29, 21, 0.4);
}

.btn-upload-event i {
    margin-right: 8px;
}

/* Approval Notice */
.approval-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(196, 29, 21, 0.1);
}

.approval-notice i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.approval-notice span {
    color: #721c24;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header-modern .header-left .section-subtitle {
        text-align: center !important;
    }
    
    .section-header-modern .header-right {
        justify-content: center;
    }
    
    .btn-upload-event {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-header-content h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .dashboard-subtitle {
        font-size: 0.875rem;
    }
}
    font-size: 1.8rem;
    text-transform: uppercase;
}

.superadmin-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(196, 29, 21, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
}

.superadmin-controls label {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-role {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-info span {
    font-family: var(--font-body);
    color: var(--text-dark);
}

.membership-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-badge.bronze {
    background: #cd7f32;
    color: white;
}

.membership-badge.silver {
    background: #c0c0c0;
    color: #333;
}

.membership-badge.gold {
    background: #ffd700;
    color: #333;
}

.membership-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #a8a8a8 100%);
    color: #333;
}

/* Dashboard Main */
.dashboard-main {
    padding: 40px 0;
}

.dashboard-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: visible;
}

/* Tabs */
.tabs-container {
    position: relative;
    z-index: 10;
    background: white;
}

.tab-bar {
    display: flex;
    gap: 0;
    background: var(--gray-light);
    border-bottom: 2px solid var(--primary-color);
    overflow-x: auto;
    scrollbar-width: thin;
}

.tab-btn {
    flex: 1;
    min-width: 180px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    background: rgba(196, 29, 21, 0.05);
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary-color);
    font-weight: bold;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Tab Panels */
.tab-panel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Profile Section */
.profile-images {
    margin-bottom: 40px;
}

.image-upload-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.image-upload-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.image-upload-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(196, 29, 21, 0.15);
    transform: translateY(-2px);
}

.image-upload-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-preview {
    width: 100%;
    height: 280px;
    border: 3px dashed #cbd5e0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.image-preview:hover {
    border-color: var(--primary-color);
    background: rgba(196, 29, 21, 0.03);
    border-style: solid;
}

.image-preview.drag-over {
    border-color: var(--primary-color);
    background: rgba(196, 29, 21, 0.08);
    border-style: solid;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-preview .placeholder {
    text-align: center;
    color: #6c757d;
    padding: 20px;
}

.image-preview .placeholder i {
    font-size: 4rem;
    margin-bottom: 12px;
    display: block;
    color: #adb5bd;
}

.image-preview .placeholder p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Profile Form */
.profile-form {
    max-width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-row {
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.field-row:hover {
    background: #f1f3f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.field-row label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.field-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.field-value {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 4px 0;
}

.edit-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.edit-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(196, 29, 21, 0.3);
}

.field-edit {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #64748b !important;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:hover {
    border-color: #475569 !important;
}

.form-input:focus {
    outline: none;
    border-color: #8B0000 !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.15);
}

.edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Membership Section */
.membership-content {
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background: linear-gradient(135deg, var(--gray-light) 0%, white 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.membership-badge-large {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.membership-badge-large i {
    font-size: 4rem;
}

.membership-badge-large.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8702c 100%);
    color: white;
}

.membership-badge-large.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #333;
}

.membership-badge-large.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.membership-badge-large.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #a8a8a8 100%);
    color: #333;
}

.membership-details {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.detail-row label {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.detail-row span {
    font-family: var(--font-body);
    color: var(--text-dark);
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.expired {
    background: #dc3545;
    color: white;
}

.membership-actions {
    text-align: center;
    margin-bottom: 30px;
}

/* Benefits Section */
.benefits-section {
    margin-top: 40px;
}

.benefits-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.benefits-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-tab-btn {
    padding: 12px 20px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.benefit-tab-btn:hover {
    background: var(--gray-medium);
}

.benefit-tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark-blue);
}

.benefits-content {
    position: relative;
    min-height: 200px;
}

.benefit-panel {
    display: none;
}

.benefit-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    font-family: var(--font-body);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* No Membership Display */
.no-membership-card {
    text-align: center;
    padding: 40px;
}

.no-membership-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.no-membership-content i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-membership-content h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.no-membership-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.membership-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.membership-option-card {
    background: white;
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.membership-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.membership-option-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.membership-option-card h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.membership-option-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.membership-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.membership-option-card li {
    padding: 8px 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-light);
}

.membership-option-card li:last-child {
    border-bottom: none;
}

/* Events Section */
.events-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.events-notice i {
    font-size: 1.5rem;
    color: #856404;
}

.events-notice p {
    margin: 0;
    font-family: var(--font-body);
    color: #856404;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .events-list {
        grid-template-columns: 1fr;
    }
}

.event-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.event-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.event-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.event-status.pending {
    background: #ffc107;
    color: #333;
}

.event-status.approved {
    background: #28a745;
    color: white;
}

.event-status.rejected {
    background: #dc3545;
    color: white;
}

.event-status.archived {
    background: #6c757d;
    color: white;
}

.event-status.deleted {
    background: #343a40;
    color: white;
}

.rejected-event {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

/* Ensure buttons inside rejected events have proper text color */
.rejected-event .btn,
.rejected-event .btn-primary,
.rejected-event .btn-secondary {
    color: white !important;
}

.rejected-event .btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #a50000 100%) !important;
    color: white !important;
    border: none;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

.rejected-event .btn-primary:hover {
    background: linear-gradient(135deg, #6d0000 0%, #8B0000 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

.rejected-event .btn-secondary {
    background: #6c757d !important;
    color: white !important;
}

.rejection-reason {
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 14px 16px;
    color: #991b1b;
    font-size: 0.9rem;
    margin-top: 16px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
}

.rejection-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rejection-text {
    padding-left: 24px;
    color: #7f1d1d;
}

.rejection-reason i {
    color: #dc3545 !important;
    font-size: 1rem;
    flex-shrink: 0;
}

.rejection-reason strong {
    color: #dc3545;
    font-weight: 600;
}

/* Event flyer thumbnail */
.event-flyer-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.event-flyer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.event-card-details {
    flex: 1;
    min-width: 150px;
}

/* Event Status Tabs */
.event-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow-x: auto;
    flex-wrap: wrap;
    border: 1px solid #dee2e6;
}

.event-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.event-tab-btn:hover {
    background: white;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.event-tab-btn.active {
    background: linear-gradient(135deg, #1a2b49 0%, #2c3e5c 100%);
    border-color: #1a2b49;
    color: white;
    box-shadow: 0 4px 12px rgba(26, 43, 73, 0.3);
}

.event-tab-btn i {
    font-size: 0.9rem;
}

.event-tab-btn[data-status="active"]:not(.active) {
    border-color: #28a745;
    color: #28a745;
}

.event-tab-btn[data-status="active"].active {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border-color: #28a745;
    color: white;
}

.event-tab-btn[data-status="pending"]:not(.active) {
    border-color: #ffc107;
    color: #856404;
}

.event-tab-btn[data-status="pending"].active {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-color: #ffc107;
    color: #212529;
}

.event-tab-btn[data-status="rejected"]:not(.active) {
    border-color: #dc3545;
    color: #dc3545;
}

.event-tab-btn[data-status="rejected"].active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: #dc3545;
    color: white;
}

.event-tab-btn[data-status="archived"]:not(.active) {
    border-color: #6c757d;
    color: #6c757d;
}

.event-tab-btn[data-status="archived"].active {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border-color: #6c757d;
    color: white;
}

.event-tab-btn[data-status="deleted"]:not(.active) {
    border-color: #343a40;
    color: #343a40;
}

.event-tab-btn[data-status="deleted"].active {
    background: linear-gradient(135deg, #343a40 0%, #23272b 100%);
    border-color: #343a40;
    color: white;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    background: rgba(0,0,0,0.1);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.event-tab-btn:not(.active) .tab-count {
    background: rgba(0,0,0,0.08);
}

.event-tab-btn.active .tab-count {
    background: rgba(255,255,255,0.25);
}

/* Archived and deleted event cards */
.archived-event {
    opacity: 0.6;
    border-left: 4px solid #6c757d;
}

.deleted-event {
    opacity: 0.5;
    border-left: 4px solid #343a40;
    background: #f8f9fa;
}

.event-card-body p {
    margin: 8px 0;
    font-family: var(--font-body);
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.event-card-body i {
    color: #8B0000;
    width: 18px;
    flex-shrink: 0;
}

.event-card-actions {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.empty-state p {
    font-family: var(--font-body);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark-blue);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

.modal-content-large {
    max-width: 1100px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-section-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-light);
}

.image-preview-small {
    margin-top: 15px;
    max-width: 300px;
}

.image-preview-small img {
    width: 100%;
    border-radius: var(--radius-md);
}

.membership-selection {
    text-align: center;
}

.membership-selection > p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.membership-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.membership-radio-card {
    cursor: pointer;
}

.membership-radio-card input[type="radio"] {
    display: none;
}

.radio-card-content {
    background: var(--gray-light);
    border: 3px solid var(--gray-medium);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s ease;
}

.membership-radio-card:hover .radio-card-content {
    border-color: var(--primary-color);
    background: white;
}

.membership-radio-card input[type="radio"]:checked + .radio-card-content {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(196, 29, 21, 0.1);
}

.radio-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.radio-card-content .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
}

/* Save Status Messages */
.save-status {
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-family: var(--font-body);
    display: none;
}

.save-status.success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.save-status.error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.save-status.info {
    background: #d1ecf1;
    border: 2px solid #17a2b8;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-dashboard {
        padding-top: 200px;
    }
    
    .dashboard-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .superadmin-controls {
        flex-direction: column;
        width: 100%;
        text-align: left;
    }
    
    .superadmin-controls #businessSelector {
        width: 100% !important;
    }
    
    .user-info {
        flex-direction: column;
    }
    
    .tab-bar {
        flex-direction: column;
    }
    
    .tab-btn {
        min-width: 100%;
    }
    
    .tab-panel {
        padding: 20px;
    }
    
    .image-upload-group {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .benefits-tabs {
        flex-direction: column;
    }
    
    .membership-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .membership-options-grid {
        grid-template-columns: 1fr;
    }
    
    .events-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-header-content h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .membership-badge-large {
        font-size: 1.5rem;
        padding: 20px;
    }
    
    .membership-badge-large i {
        font-size: 3rem;
    }
}
/* Login Method Selection Styles */
.login-method-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.method-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 29, 21, 0.3);
}

.method-btn i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.method-btn:hover i {
    color: white;
}

.method-btn span {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-dark-blue);
    transition: color 0.3s ease;
}

.method-btn:hover span {
    color: white;
}

.method-btn small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: normal;
    transition: color 0.3s ease;
}

.method-btn:hover small {
    color: rgba(255, 255, 255, 0.9);
}

.non-member-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.non-member-text {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.non-member-btn {
    background: white;
    color: var(--primary-red);
    border: 2px solid white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border-radius: var(--radius-md);
}

.non-member-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
