.default-banner {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    min-height: 200px;
}

.organizer-banner {
    max-height: 300px;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.organizer-banner img {
    object-fit: cover;
    height: 300px;
    width: 100%;
}

.organizer-profile {
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

.organizer-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid white !important;
}

#organizerTabs {
    border-bottom: none;
}

#organizerTabs .nav-link {
    color: #000;
    border: 1px solid #ccc !important;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

#organizerTabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
}

#organizerTabs .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

#organizerTabs .nav-link:hover:not(.active) {
    color: var(--primary);
    background-color: rgba(13, 110, 253, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: white;
    z-index: 1;
}

.section-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dee2e6;
    z-index: 0;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.tab-content {
    min-height: 400px;
}

.z-index-10 {
    z-index: 10;
}

.organizer-stats {
    max-width: 400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .organizer-stats {
        gap: 1rem !important;
    }

    .stat-item {
        padding: 0 0.5rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .organizer-banner img {
        height: 200px;
    }

    .organizer-avatar {
        width: 80px;
        height: 80px;
    }

    .organizer-profile {
        margin-top: -50px;
    }

    #organizerTabs .nav-link {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}
