﻿
.room-variant {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.room-variant h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

.room-variant-price {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.room-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.box19 {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.box19:hover .box-content {
    transform: translateY(0);
}

.icon {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

    .icon li {
        margin: 0 5px;
    }

        .icon li a {
            color: white;
            font-size: 18px;
        }

.modal-body img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.price-text {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
    font-size: 16px;
    font-style: italic;
}

.discount-text {
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    background-color: #ffe5e5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    display: inline-block;
}

.reserve-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
}

.price-list {
    margin-bottom: 15px;
}

    .price-list p {
        margin: 5px 0;
    }



.child-ages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.child-age-div {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .child-age-div label {
        margin: 0;
        white-space: nowrap;
    }

    .child-age-div input {
        width: 60px;
    }

