body {
    margin: 0;
    min-height: 100vh;
    background: transparent;
    position: relative;
    font-family: Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("/assets/img/background.jpg") center center / cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.navbar {
    backdrop-filter: blur(6px);
    background: rgba(20, 20, 20, 0.85) !important;
}

.container {
    position: relative;
    z-index: 1;
}

.card {
    border-radius: 16px;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.card-header {
    background: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.table {
    background: rgba(255, 255, 255, 0.92);
}

.table thead th {
    background: rgba(245, 245, 245, 0.95);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.form-control:focus,
.form-select:focus {
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

.btn {
    border-radius: 10px;
}

.alert {
    background: rgba(255, 255, 255, 0.92);
    border: none;
}

.badge {
    font-size: 0.9rem;
}

.booking-row-faded {
    opacity: 0.55;
}