.room-image-container {
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-features {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.room-features li {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    color: #777;
}

.room-price {
    margin: 15px 0;
    text-align: center;
}

.room-price .price {
    font-size: 24px;
    font-weight: bold;
    color: #03a9f4;
}

.room-price .price-label {
    display: block;
    font-size: 14px;
    color: #777;
}

/* Additional styles for datepicker and form elements */
.input-group-addon {
    cursor: pointer;
}

.alert {
    border-radius: 0;
}

.panel_s {
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.panel_s:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}

.available-room .panel_s {
    overflow: hidden;
}

.available-room .panel_s.active {
    border: 2px solid rgb(56 189 248);
    border-radius: 12px;
    overflow: hidden;
}

.room-image-container-large {
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.room-image-container-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    margin-bottom: 30px;
}

.amenities-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    columns: 2;
}

.amenities-list li {
    padding: 5px 0;
    break-inside: avoid;
}

.amenities-list li i {
    color: #03a9f4;
    margin-right: 10px;
}

.room-features-large {
    margin: 30px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #03a9f4;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 14px;
    color: #777;
}

.feature-value {
    font-size: 16px;
    font-weight: bold;
}

.booking-sidebar {
    padding: 15px 0;
}

.room-price-large {
    text-align: center;
    margin-bottom: 30px;
}

.room-price-large .price {
    font-size: 36px;
    font-weight: bold;
    color: #03a9f4;
}

.room-price-large .price-label {
    display: block;
    font-size: 16px;
    color: #777;
}

.booking-summary {
    background-color: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-line {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    font-weight: bold;
    font-size: 18px;
}

.summary-label {
    color: #777;
}

.summary-value {
    font-weight: bold;
}

.nav-tabs .nav-item button {
    background: white;
    border: solid 1px #03a9f4;
    padding: 8px 16px;
    border-radius: 2px;
}

.nav-tabs .nav-item.active button{
    background: #03a9f4;
    color: white;
    border: solid 1px white;
}