.event-type-tabs {
    margin-bottom: 1.5rem;
}

.tab-buttons {
    display: flex;
    gap: 8px;
}

.admin-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.admin-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
}

.admin-tab-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-tab-btn.active {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.admin-tab-btn i {
    font-size: 18px;
    line-height: 1;
    margin-right: 8px;
}

.admin-tab-btn span {
    font-size: 14px;
    font-weight: 500;
}

.tab-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    min-width: 20px;
    text-align: center;
}

.admin-tab-btn.active .tab-badge {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        gap: 4px;
    }

    .admin-tab-btn {
        min-width: 100%;
        height: 44px;
    }
}

.admin-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.admin-tab-btn:hover::before {
    left: 100%;
}

.admin-search-filter {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.admin-search-filter .form-control {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.admin-search-filter .form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.admin-search-filter .row {
    margin: 0;
}

.admin-search-filter .col-md-3,
.admin-search-filter .col-md-2 {
    padding: 0 0.5rem;
}

.admin-search-filter select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.notice-slider {
    position: relative;
    height: 48px;
    overflow: hidden;
}

.notice-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.notice-slide.active {
    transform: translateY(0);
    opacity: 1;
}

.notice-slide.exit {
    transform: translateY(-100%);
    opacity: 0;
}
