:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.navbar {
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-brand .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
}

.navbar-brand .brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-brand .brand-highlight {
    color: #fbbf24;
}

.nav-link {
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: white;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-search {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow-lg);
}

.hero-search .form-control,
.hero-search .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.hero-search .form-control:focus,
.hero-search .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hero-search .btn {
    padding: 12px 30px;
    font-weight: 600;
}

.carousel-section {
    padding: 40px 0;
    background: white;
}

.featured-carousel .carousel-item {
    height: 400px;
}

.featured-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
}

.featured-carousel .carousel-caption {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px 20px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.event-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.event-card .card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .card-img-top {
    transform: scale(1.05);
}

.event-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-card .card-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.event-card .card-title a:hover {
    color: var(--primary-color);
}

.event-card .event-meta {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.event-card .event-meta i {
    width: 16px;
    margin-right: 5px;
    color: var(--primary-color);
}

.event-card .category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card .price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-card .price-badge.paid {
    background: var(--secondary-color);
}

.countdown-timer {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 10px;
    margin-top: auto;
    text-align: center;
}

.countdown-timer .countdown-item {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
}

.countdown-timer .countdown-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-timer .countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-500);
}

.top-events-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
    padding: 50px 0;
    color: white;
}

.top-events-section .section-title {
    color: white;
}

.top-events-section .section-title i {
    color: var(--secondary-color);
}

.top-event-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.top-event-item:hover {
    background: rgba(255,255,255,0.15);
}

.top-event-item .rank {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.top-event-item .event-info {
    flex-grow: 1;
}

.top-event-item .event-info h6 {
    margin: 0;
    font-weight: 600;
}

.top-event-item .event-info h6 a {
    color: white;
    text-decoration: none;
}

.top-event-item .event-info small {
    color: var(--gray-400);
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--dark-color);
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    color: var(--primary-color);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.category-card .event-count {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.event-details-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-details-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details-header .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 60px 20px 30px;
    color: white;
}

.event-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.event-info-card h5 {
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

.event-info-item {
    display: flex;
    margin-bottom: 15px;
}

.event-info-item i {
    width: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.event-info-item .info-content {
    flex-grow: 1;
}

.event-info-item .info-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.event-info-item .info-value {
    font-weight: 500;
}

.countdown-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.countdown-large .countdown-item {
    display: inline-block;
    margin: 0 15px;
}

.countdown-large .countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-large .countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.share-buttons a:hover {
    transform: scale(1.1);
}

.share-buttons .facebook { background: #1877f2; }
.share-buttons .twitter { background: #1da1f2; }
.share-buttons .whatsapp { background: #25d366; }
.share-buttons .linkedin { background: #0077b5; }

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.sidebar-widget h5 {
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

.ad-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: var(--gray-500);
}

.ad-container.ad-header {
    background: var(--gray-100);
    padding: 10px 0;
}

.filter-sidebar .form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.filter-sidebar .form-check {
    margin-bottom: 8px;
}

.calendar-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.fc .fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.fc .fc-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.fc .fc-button-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.fc .fc-event {
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 0.85rem;
}

.admin-sidebar {
    background: var(--dark-color);
    min-height: 100vh;
    padding: 20px;
}

.admin-sidebar .nav-link {
    color: var(--gray-400);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 10px;
}

.stats-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.stats-card .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stats-card .stats-icon.bg-primary { background: var(--primary-color); }
.stats-card .stats-icon.bg-success { background: var(--success-color); }
.stats-card .stats-icon.bg-warning { background: var(--secondary-color); }
.stats-card .stats-icon.bg-danger { background: var(--danger-color); }

.stats-card .stats-value {
    font-size: 2rem;
    font-weight: 700;
}

.stats-card .stats-label {
    color: var(--gray-500);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.review-card {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-card .rating {
    color: var(--secondary-color);
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-300);
    padding: 0 2px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--secondary-color);
}

.pagination .page-link {
    border: none;
    color: var(--gray-600);
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 8px;
}

.pagination .page-link:hover {
    background: var(--gray-200);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.loading-spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert {
    border: none;
    border-radius: 10px;
}

.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    padding: 10px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

@media (max-width: 992px) {
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .navbar-brand .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-section .lead {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .featured-carousel .carousel-item {
        height: 250px;
    }
    
    .featured-carousel .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .featured-carousel .carousel-caption p {
        font-size: 0.85rem;
    }
    
    .countdown-large .countdown-item {
        margin: 0 8px;
    }
    
    .countdown-large .countdown-value {
        font-size: 1.75rem;
    }
    
    .event-details-header {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .category-card {
        padding: 15px 10px;
    }
    
    .category-card i {
        font-size: 1.5rem;
    }
    
    .category-card h5 {
        font-size: 0.9rem;
    }
    
    .top-event-item {
        padding: 10px;
    }
    
    .top-event-item .rank {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer .col-md-3, .footer .col-md-4 {
        margin-bottom: 25px;
    }
    
    .ad-placeholder {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .navbar .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
    
    .navbar-collapse .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-search {
        padding: 15px;
    }
    
    .hero-search .form-control,
    .hero-search .form-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .event-card .card-img-wrapper {
        height: 150px;
    }
    
    .event-card .card-body {
        padding: 12px;
    }
    
    .event-card .card-title {
        font-size: 1rem;
    }
    
    .event-card .event-meta {
        font-size: 0.8rem;
    }
    
    .share-buttons a {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 1.15rem;
    }
    
    .category-card {
        padding: 12px 8px;
    }
    
    .category-card i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .category-card h5 {
        font-size: 0.8rem;
    }
    
    .category-card .event-count {
        font-size: 0.7rem;
    }
    
    .countdown-timer {
        padding: 8px;
    }
    
    .countdown-timer .countdown-value {
        font-size: 1rem;
    }
    
    .countdown-timer .countdown-label {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .top-events-section {
        padding: 30px 0;
    }
    
    .top-event-item .event-info h6 {
        font-size: 0.9rem;
    }
    
    .top-event-item .event-info small {
        font-size: 0.75rem;
    }
    
    .footer h5, .footer h6 {
        font-size: 1rem;
    }
    
    .footer ul li {
        font-size: 0.9rem;
    }
    
    .featured-carousel .carousel-caption {
        padding: 15px;
    }
    
    .featured-carousel .carousel-caption .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1f2937 !important;
}

.footer h5,
.footer h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer .text-muted {
    color: #9ca3af !important;
}

.footer a.text-muted {
    color: #d1d5db !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a.text-muted:hover {
    color: #ffffff !important;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Social & Discovery Features */
.weekend-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.expired-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-card.past-event {
    opacity: 0.85;
}

.event-card.past-event .card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.event-card.past-event:hover {
    opacity: 1;
}

.distance-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.attendee-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    font-size: 0.9rem;
}

.attendee-list {
    max-height: 200px;
    overflow-y: auto;
}

.group-booking-item {
    background: var(--gray-100);
    transition: all 0.2s ease;
}

.group-booking-item:hover {
    background: var(--gray-200);
}

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.going-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--success-color);
    font-weight: 500;
}

.going-count i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-success.going-btn {
    animation: pulse 2s infinite;
}

.btn-success.going-btn:hover {
    animation: none;
}

/* Itinerary Styles */
.itinerary-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.itinerary-card:hover {
    box-shadow: var(--box-shadow-lg);
}

.itinerary-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 0.5rem;
    background: var(--gray-100);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Admin Panel Styles */
.admin-sidebar {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    min-height: 100vh;
    padding: 20px 15px;
    position: sticky;
    top: 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

.admin-mobile-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1050;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1035;
}

@media (max-width: 991px) {
    .admin-mobile-toggle {
        display: block;
    }
    
    .admin-sidebar-overlay.show {
        display: block;
    }
    
    .admin-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        height: 100vh;
        z-index: 1040;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .admin-sidebar.show {
        left: 0;
    }
    
    .admin-content {
        margin-left: 0 !important;
        padding: 70px 15px 20px !important;
        width: 100% !important;
    }
    
    .admin-content h2 {
        font-size: 1.5rem;
    }
    
    .admin-content .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-content .table-responsive {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .admin-content .table th,
    .admin-content .table td {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 10px 8px;
    }
    
    .admin-content .btn-group .btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .stats-row .col-md-3 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .admin-content h2 {
        font-size: 1.25rem;
    }
    
    .admin-content .card {
        margin-bottom: 15px;
    }
    
    .admin-content .card-body {
        padding: 15px;
    }
    
    .admin-content .btn-sm {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .admin-content .table th,
    .admin-content .table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
    
    .admin-content .display-4 {
        font-size: 1.75rem;
    }
}
