.breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 50px;
}


.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 8px;
    cursor: pointer;
}

.image-grid {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.image-grid .small-image {
    flex: 1;
}

.image-grid .small-image img {
    width: 100%;
    max-height: 100px;
}

.view-all-button {
    position: relative;
    display: inline-block;
}

.view-all-button button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.view-all-button button:hover {
    background-color: #f0f0f0;
}

.room-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-box {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-box.available {
    border: 2px solid #c0e2bb; /* Merah untuk ruangan tidak tersedia */
    color: #505050;
}

.room-box.unavailable {
    background-color: #cccccc;
    border: 1px solid #c9c9c9; /* Merah untuk ruangan tidak tersedia */
    color: #505050;
    cursor: not-allowed;
}

.room-box:hover {
    transform: scale(1.1);
}

.position-relative {
    position: relative;
}

.btn-view-all {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}

.sticky-bottom .card .form-control, 
.sticky-bottom .card button {
    width: 100%;
    box-sizing: border-box; /* Pastikan padding tidak memengaruhi lebar elemen */
    margin-bottom: 10px; /* Tambahkan jarak antar elemen jika diperlukan */
}

.sticky-bottom .btn {
    font-size: 13px; /* Sesuaikan ukuran font dengan input/select */
}

@media (max-width: 768px) {
    .image-grid {
        flex-direction: column;
    }
}

/* Default: Tampilkan semua elemen */
/* Tampilkan grid gambar kecil hanya pada desktop */
@media (max-width: 991px) {
    .btn-view-all {
        display: block;
    }
    .image-grid {
        display: none !important;
    }
}

/* Hanya untuk layar kecil */
@media (max-width: 768px) {
    .sticky-bottom {
        display: block;
        position: fixed;
        overflow: hidden;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000 !important;
        background: #ffffff;
        border-radius: 5%;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        padding: 5px;
        margin: 0;
    }
    .sticky-bottom .card {
        margin: 0;
    }

    h6 {
        visibility: hidden;
        margin-bottom: -25%;
    }
    .ui-datepicker {
        z-index: 1050 !important; /* Pastikan berada di atas elemen lainnya */
    }
}




