:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --warning: #ffc107;
    --success: #198754;
    --danger: #dc3545;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: ltr;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.hall-preview {
    background: rgba(255, 255, 255, 0.95) !important;
}

.btn-warning {
    font-weight: 600;
}

.booking-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.rules-list li i {
    color: #dc3545;
    margin-right: 10px;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }
.status-cancelled { background: #e2e3e5; color: #383d41; }
.status-completed { background: #cce5ff; color: #004085; }

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.admin-sidebar {
    min-height: 100vh;
    background: #212529;
}

.admin-sidebar a {
    color: #adb5bd;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #343a40;
    color: #fff;
    border-left-color: #ffc107;
}

.dashboard-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.print-receipt {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

@media print {
    .no-print { display: none !important; }
    .print-receipt { box-shadow: none; }
}

.calendar-booking {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
}

.calendar-day:hover { background: #e9ecef; }
.calendar-day.booked { background: #dc3545; color: white; cursor: not-allowed; }
.calendar-day.available { background: #198754; color: white; }
.calendar-day.disabled { background: #e9ecef; color: #adb5bd; cursor: not-allowed; }
