#booking {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: shuffleBackground 10s infinite;
}

@keyframes shuffleBackground {
    0%, 50% { background-image: url(../img/hero-bg1.jpg); }
    50%, 100% { background-image: url(../img/hero-bg2.jpg); }
}

#booking::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}


.w3-sidebar {
    width: 70px;
    background-color: #000;
    font-size: 20px;
}

.w3-sidebar a {
    padding: 20px 0;
    display: block;
    color: #fff;
    text-align: center;
    transition: background-color 0.3s;
}

.w3-sidebar a i {
    margin-right: 5px;
}

.w3-sidebar a:hover::before {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-10px, -50%);
    padding: 5px;
    background-color: #444;
    color: #fff;
    border-radius: 3px;
    z-index: 1000;
}

.w3-sidebar button {
    margin-top: 400px;
}

#admin {
    margin-left: 70px;
    transition: margin-left 0.5s;
}

.btn-add-houses {
    font-size: 14px;
    padding: 5px 10px;
}

.admin-table {
    width: calc(100% - 70px);
    border-collapse: collapse;
    margin-left: 70px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.admin-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
}

.admin-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.admin-table tbody tr:hover {
    background-color: #f2f2f2;
}


/** Booking Style **/

.blur-background {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.card-body #departure-date {
    border-radius: 10px;
}

.card #departure-date {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    margin-bottom: 10px;
}

.status {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.status.booked {
    background-color: #ff6666;
    color: white;
}

.status.available {
    background-color: #66cc66;
    color: white;
}
