body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

/* Navbar specific styling */
.navbar-brand {
    font-weight: 700;
    color: #0e1b3d !important;
}

.room-image {
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease-in-out;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 12px;
}

.reservation-card {
    top: 20px; /* Offset for sticky positioning */
    border: 2px solid #007bff;
}

/* Price summary area */
#priceSummary {
    background-color: #e9ecef !important;
    border-radius: 8px;
}

#finalTotal {
    font-weight: 700;
    color: #28a745;
}