/* CSS for room booking page */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.booking-container {
    background-color: #fff;
    padding: 20px 0;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-type {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.booking-form-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.form-floating label {
    color: #777;
}

.booking-summary {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.booking-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.room-preview {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.room-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.room-preview img:hover {
    transform: scale(1.03);
}

.room-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.booking-calculation {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

.calculation-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.calculation-item.total {
    margin-top: 10px;
    font-weight: 600;
    color: #2c3e50;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 1.1rem;
}

.booking-policies {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.booking-policies h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li i {
    margin-right: 10px;
    color: #2c3e50;
}

.btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

@media (max-width: 767.98px) {
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-form-section {
        padding: 1.5rem;
    }
}
