
    [data-bs-theme=dark][data-color-theme=Blue_Theme]:root .btn-primary, [data-bs-theme=light][data-color-theme=Blue_Theme]:root .btn-primary {
    --bs-btn-bg: #000 !important;
    --bs-btn-border-color: #000 !important;
    --bs-btn-hover-bg: #2b2b2b !important;
    --bs-btn-hover-border-color: #2b2b2b !important;
}

.navbar {
    padding: 0px 45px !important;
    max-width: 100% !important;
}

.container-fluid {
    max-width: 100% !important;
}

.container-main {
    max-width: 100% !important;
    margin: 0px;
    padding: 15px;
}

.booking-status {
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
    display: block;
    position: absolute;
    left: 30px;
    top: 20px;
}
                                                            
                                                            .status-pending {
                                                                background: #f8d7da;
                                                                color: #842029;
                                                                font-size:11px;
                                                            }
                                                            
                                                            .status-expired {
                                                                background: #f8d7da;
                                                                color: #842029;
                                                                font-size:11px;
                                                            }
                                                            
                                                            .status-confirmed {
                                                                background: #d1e7dd;
                                                                color: #0f5132;
                                                                font-size:11px;
                                                            }
                                                            
                                                            .status-cancelled {
                                                                background: #e2e3e5;
                                                                color: #41464b;
                                                                font-size:11px;
                                                            }

.modal-overlay-reschd{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-box-reschd{
    background:#fff;
    width:420px;
    max-width:95%;
    padding:25px;
    border-radius:14px;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    animation:fadeInReschd 0.2s ease-in-out;
}

.modal-title-reschd{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

.modal-content-reschd{
    font-size:14px;
    color:#444;
    line-height:1.6;
}

.modal-actions-reschd{
    margin-top:20px;
    text-align:right;
}

.btn-confirm-reschd{
    background:#16a34a;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
}

.btn-reject-reschd{
    background:#dc2626;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
    margin-left:6px;
}

.btn-close-reschd{
    background:#6b7280;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
    margin-left:6px;
}

.btn-confirm-reschd:hover{ opacity:0.9; }
.btn-reject-reschd:hover{ opacity:0.9; }
.btn-close-reschd:hover{ opacity:0.9; }

@keyframes fadeInReschd{
    from{ transform:translateY(-10px); opacity:0; }
    to{ transform:translateY(0); opacity:1; }
}

.men-pro-fix {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
}

.men-pro-fix button {
    background: none;
    padding: 0px;
    border: 0px;
    text-align: left;
}

.btn-modify-booking {
    border: none;
    padding: 0px;
    background: transparent;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 10px;
    font-size: 11px;
}

/* overlay */
.resh-ccl-overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.45);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

/* modal box */
.resh-ccl-box{
    background:#fff;
    width:90%;
    max-width:720px;
    border-radius:16px;
    padding:25px;
    animation: reshFade .2s ease;
    position:relative;
    font-family: inherit;
    overflow: auto;
    height: 95vh;
}

@keyframes reshFade{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

/* close button */
.resh-ccl-close{
    position:absolute;
    right:15px;
    top:10px;
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
}

/* tabs */
.resh-ccl-tabs{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.resh-ccl-tab-btn{
    flex:1;
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
    background:#f5f5f5;
    cursor:pointer;
    font-weight:600;
}

.resh-ccl-tab-btn.active{
    background:#000;
    color:#fff;
}

/* content area */
.resh-ccl-content{
    border:1px solid #eee;
    border-radius:10px;
    padding:20px;
    background:#fafafa;
}

/* buttons */
.resh-ccl-danger{
    background:#dc3545;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    margin-top:15px;
}

.resh-ccl-primary{
    background:#000;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    margin-top:15px;
}

.resh-ccl-agreement{
    margin-top:15px;
    font-size:13px;
    color:#444;
}

.resh-ccl-agreement input{
    margin-right:6px;
}

.resh-ccl-agreement a{
    color:#000;
    font-weight:600;
    text-decoration:underline;
}

/* price box */
.resh-ccl-price-box{
    background:#fff;
    border-radius:10px;
    padding:15px;
    margin-top:15px;
    border:1px solid #eee;
    display:flex;
    justify-content:space-between;
}

.resh-ccl-date{
    width:100%;
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
    margin-top:10px;
    background:#fff;
}

.v-rsv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.ss-open {
    border-radius: 0px 0px 25px 25px;
}

.ds-flex {
    display:flex;
    gap:20px;
}

.ds-made {
    max-height: 180px;
    height:180px;
    width: 70%;
}

.ds-rsv {
    max-height: 180px;
    height:180px;
    width: 30%;
} 

.no-chat-get{
    text-align:center;
    color:#8696a0;
    margin-top:40px;
    font-size:12px;
    line-height:1.6;
}

.no-chat-get span{
    font-size:10px;
}

.empty-chat-getsroom{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:50vh;
    text-align:center;
    color:#717171;
    padding:40px 20px;
}

.empty-chat-getsroom .empty-chat-icon{
    color:#B0B0B0;
    margin-bottom:16px;
}

.empty-chat-getsroom .empty-chat-title{
    font-size:18px;
    font-weight:600;
    color:#222;
    margin-bottom:6px;
}

.empty-chat-getsroom .empty-chat-desc{
    font-size:14px;
    max-width:260px;
    line-height:1.5;
}

.empty-chat{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
    color:#888;
    text-align:center;
    font-size:14px;
}

.empty-icon{
    font-size:40px;
    margin-bottom:10px;
    opacity:0.6;
}

.rounded-circle {
    object-fit: cover;
}

.con-book {
    padding: 8px 20px;
    border: 1px solid #efefef;
    border-radius: 50px;
    
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: 17px;
}
.call-book {
    padding: 8px 20px;
    border: 1px solid #efefef;
    border-radius: 50px;
    
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: 17px;
}

.card-acc-cs a:hover {
    color:black;
}

.col2head {
    display: flex;justify-content: flex-start;align-items: center;
}

.col2headright {
    display: flex;justify-content: flex-end;gap: 20px;align-items: center;
}

.btn-login {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #ff2f92, #ff7a18) border-box;
    border: 2px solid transparent;
    border-radius: 50px;
    margin-right: 10px;
    color:black;
}

.hs-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
}

.div-desti {
    padding: 5px 20px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.s-desti {
    all: unset;
    border: 0px !important;
    padding: 0px !important;
    height: fit-content !important;
    width: 100%;
}

.s-desti:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* MOBILE trigger style */
.mobile-search-trigger {
    background: #fff;
    padding: 14px 18px;
    border-radius: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: 500;
}


.c-mob-s {
    background: #f4f4f4;
    border-radius: 50px;
    padding: 5px !important;
    margin: 10px;
}
.mt-promo {
    display: none;
    margin: auto;
    width: fit-content;
}

.img-pr {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.tt-info {
    margin: auto;
    padding: 15px;
    border: none;
    font-weight: bold;
    color: black;
    background: white;
}

.card-acc-cs {
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,.05) !important;
    padding: 30px;
    border:1px solid #efefef !important;
}

.md-nmbr {
    color:green;
    font-size: 20px;
    font-weight: bold;
}

.mm-head {
    background: #fff9f0;
    padding: 10px;
    border: 1px solid #efefef;
    border-radius: 25px;
    width: 400px;
    margin: 20px auto;
}

.mmm-terms {
    padding: 20px;
    background: #ebebeb;
    border-radius: 25px;
}

/* hide form on mobile */
@media(max-width:768px){
    
    .navbar {
        padding: 0px !important;
        max-width: 100% !important;
    }
    
    .v-rsv {
        display: flex;
        justify-content: space-between;
        align-content: space-between;
        margin-top: 20px;
        flex-direction: row-reverse;
        align-items: center;
    }
    
    .mmm-terms {
        margin-top:50px;
        padding: 15px;
        background: #ebebeb;
        border-radius: 25px;
    }
    
    .mm-head {
       display:block;background:#fff9f0;padding: 20px;margin: 20px 0px 20px 0px;border: 1px solid #efefef;border-radius: 25px;
    }
    
    .md-nmbr {
        color:green;
        font-size: 16px;
    }
    
    .ds-flex {
        display: block;
    }
    
    .ds-rsv {
        width: 100% !important;
    } 
    
    .ds-made {
        width: 100% !important;
    }

    .search-box {
        display: none;
    }
    
    .tt-info {
        font-size: 12px;
    }
    
    .c-mob-s {
        background: #f4f4f4;
        border-radius: 20px;
        padding: 10px !important;
        margin: 10px 0px;
    }
    
    .mobile-search-trigger {
        margin: 15px 0px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .col2head {
        display: none;
    }
    
    .col2headright {
        display: none;
    }
    
    .div-desti {
        margin-bottom: 20px;
    }
}

/* popup style mobile */
.search-box.active {
    display: block !important;
    inset: 0;
    background: #fff;
    z-index: 9999;
    overflow: auto;
    padding: 0px 0px 20px 0px;
}


.imgrm-list {
    height:200px; object-fit:cover;border-radius:15px;
}

.mobtable {
    display: none;
}

.fmobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width:680px) {
    .mobtable {
        display: block;
    }
    .desktable {
        display: none;
    }
    
    .accordion-button {
        padding: 20px 0px !important;
    }
    .accordion-body {
        padding: 0px 0px;
    }
}


.popup-overlay-password {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Box */
.popup-box-password {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    animation: popupFade-password 0.3s ease;
}

/* Title */
.popup-title-password {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* Close button */
.popup-close-password {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Form */
.form-group-password {
    margin-bottom: 15px;
}

.input-password {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Button */
.btn-password {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-password:hover {
    opacity: 0.85;
}

/* Error */
.error-password {
    margin-top: 10px;
    color: red;
    font-size: 13px;
    text-align: center;
}

/* Animation */
@keyframes popupFade-password {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width:680px) {
    .popup-box-password {
        background: #fff;
        width: 100%;
        max-width: 85%;
        padding: 25px;
        border-radius: 12px;
        position: relative;
        animation: popupFade-password 0.3s ease;
    }
    .imgrm-list {
        height:160px; object-fit:cover;border-radius:15px;
    }
    
    .t-mpro {
        width: 100%;
        display: block;
    }
    
    .tt-rmpro {
        font-size: 9px;
    }
}

.addphoto-dropzone {
    border: 2px dashed #ddd;
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    background: #fafafa;
}

.addphoto-dropzone:hover,
.addphoto-dropzone.active {
    border-color: #000;
    background: #f4f4f4;
}

.addphoto-dropzone p {
    margin: 0;
    font-weight: 600;
}

.addphoto-dropzone span {
    font-size: 13px;
    color: #777;
}

.addphoto-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.addphoto-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.addphoto-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

.addphoto-form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.addphoto-form-group select,
.addphoto-form-group input[type="file"] {
    width: 100%;
}

.addphoto-btn-submit {
    background: black;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
}

.addphoto-modal-content {
    background: #fff;
    max-width: 800px;
    margin: 5% auto;
    padding: 25px;
    border-radius: 15px;
    overflow: auto;
    max-height: 80vh;
}

.addphoto-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
}

.modal-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    
    grid-auto-rows: 150px;
    gap: 10px;
    grid-auto-flow: dense;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.close-modal {
    float: right;
    cursor: pointer;
    font-size: 22px;
}

.photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
}

.photo-modal-content {
    background: white;
    max-width: 900px;
    margin: 5% auto;
    padding: 25px;
    border-radius: 15px;
}

.photo-section-card:hover img {
    transform: scale(1.05);
    transition: .3s ease;
}

.photo-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}
.photo-section-card {
    cursor: pointer;
}
.photo-thumb {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    background: #f2f2f2;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-info {
    margin-top: 8px;
}

.photo-info h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.photo-info span {
    font-size: 13px;
    color: #777;
}

.headtitle {
    font-size: 50px;
    font-weight: bold;
    color: black;
}

#getsroom-widget {
  font-family: Arial, sans-serif;
}

.gr-title{
  font-weight:600;
  font-size:16px;
}

.gr-powered{
  font-size:11px;
  color:#888;
  margin-bottom:12px;
}

.gr-row{
  display:flex;
  gap:10px;
  align-items:flex-end;
}

.gr-row-vertical{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gr-field{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex:1;
  font-size:11px;
  font-weight:600;
  color:#555;
}

.gr-row .gr-date-field{
  flex: 2.5;
  min-width: 440px !important;
}

/* fields lain tetap compact */
.gr-row .gr-field{
  flex: 1;
  min-width: 110px;
}

.gr-input{
  height:42px;
  border-radius:10px;
  border:1px solid #ccc;
  padding:0 12px;
}

.gr-counter{
  display:flex;
  border:1px solid #ccc;
  border-radius:10px;
  overflow:hidden;
  height:42px;
}

.gr-counter button{
  width:32px;
  border:none;
  background:#f5f5f5;
  cursor:pointer;
}

.gr-counter input{
  border:none;
  text-align:center;
  width:100%;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: #ffae1f !important;
    border-color: #ffae1f !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 #ffae1f;
    box-shadow: -10px 0 0 #ffae1f !important;
}

.gr-btn{
  border:none;
  border-radius:25px;
  background:linear-gradient(135deg,#ff2f92,#ff7a18);
  color:white;
  font-weight:600;
  cursor:pointer;
  height:42px;
  padding:0 54px;
  white-space:nowrap;
}

.flatpickr-input,
.flatpickr-alt-input{
  height:42px;
  border-radius:10px;
  border:1px solid #ccc;
  padding:0 12px;
  width:100%;
  font-family:inherit;
}


.back-wid {
    background: #fca630;
    border-radius: 25px;
    position: relative;
    padding: 30px;
    transition: background 0.4s ease;
}

.back-wid.bg-forest {
    background: url('https://getsroom.com/getsroom/image/lissete-laverde-7OFTxbGWqwk-unsplash.jpg?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

/* tombol switch */
.bg-switcher {
    
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom:20px;
}

.bg-switcher button {
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 30px;
    height: 30px;
}

.bg-switcher button.active {
    transform: scale(1.1);
}



.btn-orange {
    background: orange;
    color: #fff;
}

.btn-forest {
    background-image: url('https://getsroom.com/getsroom/image/lissete-laverde-7OFTxbGWqwk-unsplash.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
}

.index-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    transition: all .4s ease;
}

/* glass effect when forest active */
.back-wid.bg-forest .index-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    color: #fff;
}

.back-wid.bg-forest .index-card label{
    color: #fff;
}
.back-wid.bg-forest .index-card .gr-powered {
    color: #fff;
}

.back-wid.bg-forest .index-card .gr-powered b {
    color: #fff;
}

.back-wid.bg-forest .headtitle {
    color: #fff;
}

.back-wid.bg-forest p {
    color: #fff;
}


.feature-row-one {
    display: flex;
    flex-wrap: wrap; /* penting agar bisa turun baris */
    gap: 20px;
}

.feature-item-one {
    width: calc(33% - 15px); /* 3 kolom desktop */
    text-align: center;
}

.img-one-pro {
    object-fit: contain;
    height: 550px;
    width:100%;
}

.feature-item-one img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
    background: #f6f6f6;
    padding: 10px;
    border-radius: 20px 20px 0px 0px;
}

.feature-item-one p {
    font-size: 16px;
    color: black;
    margin: 0;
}


@media (max-width: 480px) {
    .photo-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .photo-modal-content {
        background: white;
        max-width: 90% !important;
        margin: 5% auto;
        padding: 10px;
        border-radius: 15px;
        height: 90vh;
        overflow: scroll;
    }
    
    .addphoto-preview {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        margin-top: 15px;
    }
    
    .addphoto-modal-content {
        background: #fff;
        max-width: 90% !important;
        margin: 5% auto;
        padding: 10px;
        border-radius: 15px;
        overflow: auto;
        height: 90vh !important;
    }
}




/* Tablet & Mobile */
@media (max-width: 768px) {
    .feature-item-one {
        width: calc(50% - 10px); /* 2 kolom */
        margin-top: 20px;
    }
    
    .gr-btn{
        margin-top:10px;
    }
}

/* Optional: layar sangat kecil */
@media (max-width: 420px) {
    .feature-item-one {
        width: 100%; /* 1 kolom jika layar sangat kecil */
        margin-top: 20px;
    }
}


.fontmobicon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
    font-weight: bold;
}

.firstfonticon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;display: flex;justify-content: center;align-items: center;font-size: 50px;background: black;color: white;
}

.room-facilities-chat{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:6px 12px;
    margin-top:8px;
}

.room-facilities-chat span{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
}

.rowmenu-head {
    display: flex;
    gap:30px;
    color:black;
}
.rowmenu-head a{
    
    color:black;
}
.rowmenu-head a.active {
    text-decoration: underline;
    color:black;
}

.build-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Mobile */
@media (max-width: 768px){
    .build-container{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-build {
        height: 250px !important;
    }
    
    .img-one-pro {
        object-fit: contain;
        height: auto;
        margin-bottom: 20px !important;
    }
}

/* Styling card */
.card-build{
    display: flex;
    gap: 15px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 9%) !important;
    align-items: flex-start;
}
.card-build img{
    width: 40px;
}
.shhd {
    display: none !important;
}

@media (max-width: 768px){
    .detail-area{
        display:none;
    }
    
    .shhd {
        display: flex !important;
    }
}

.roomdetail-policy {
    border: 1px solid black;padding: 10px;border-radius: 15px;
}


.chat-wrapper{display:flex;}
.sidebar-chat{width:340px;background:#fff;border-right:1px solid #eee;overflow:auto;}
.chat-area{flex:1;display:flex;flex-direction:column; width:70%;}
.detail-area {width:30%;}
.thread-item{padding: 10px 0px;border-bottom:1px solid #eee;cursor:pointer;}
.thread-item:hover{background:#f9f9f9;}
.active-thread{background:#fff0f3;border-left:4px solid #ff385c;}

.chat-sidebar{
width:320px;
border-right:1px solid #eee;
background:#fff;
overflow-y:auto;
}

/* CHAT AREA */
.chat-area{
flex:1;
background:#fff;
display:flex;
flex-direction:column;
transform: translateX(100%);
opacity:0;
height: 75vh;
transition: transform .35s ease, opacity .35s ease;
}

/* ACTIVE (muncul) */
.chat-area.active{
transform: translateX(0);
opacity:1;
}

.thread-content{
flex:1;
min-width:0;
}

.back-btn-chat{
display:none;
cursor:pointer;
margin-right:10px;
}

@media(max-width:768px){
.back-btn-chat{
display:inline;
margin-right: 20px;
}
}

.msg-row{
    display:flex;
    flex-direction:column;
    margin:6px 0;
    max-width:70%;
}

.msg-row.me{
    margin: auto;
    text-align: right;
    right: 10px;
    position: relative;
    display: flex;
    max-width: 100%;
    align-items: flex-end;
}

.msg-row.them{
    margin-right:auto;
    text-align:left;
    left: 10px;
    position: relative;
    display: flex;
    max-width: 100%;
    align-items: flex-start;
}

.msg{
    padding:8px 12px;
    border-radius:10px;
    background:#f1f1f1;
    display:inline-block;
}

.msg-row.me .msg{
    background:#1c1c1c;
    color:white;
    width:fit-content;
}

.msg-row.them .msg{
    color:black;
    width:fit-content; 
}


.msg-time{
    font-size:10px;
    color:#888;
    margin-bottom:2px;
}


.badge{background:#ff385c;color:#fff;border-radius:50%;padding:4px 8px;font-size:12px;float:right;position:absolute;}

.chat-header{padding:15px;background:#fff;border-bottom:1px solid #eee;font-weight:bold;}
.chat-messages{flex:1;overflow:auto;padding:20px;background:#fafafa;}

.chat-input{display:flex;padding:10px 0px;background:#fff;border-top:1px solid #eee;}
.chat-input input{flex:1;padding:8px;border-radius:8px;border:1px solid #ddd;}
.chat-input button{margin-left:10px;background:#000;color:#fff;border:none;padding:12px 18px;border-radius:8px;cursor:pointer;}

.thread-message{
margin:4px 0 0;
font-size:13px;
color:#444;

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

@media(max-width:768px){
.sidebar-chat{width:100%;}
.thread-item strong{display:block;}
.chat-wrapper {
    display: flex;
    height: auto;
    flex-wrap: wrap;
    width: 100%;
}

.chat-sidebar{
width:100%;
}

.chat-area{
display:none;
position:absolute;
top:0;
right:0;
width:100%;
height:100vh;
z-index:10;
background:#fff;
}

.chat-area.active{
display:flex;
flex-direction:column;
transform: translateX(0);
}

.chat-input {
display: flex;
position: sticky;
bottom: 0px;
width: 100%;
}

.chat-header {
    padding: 5px 0px 15px 0px;
}

}


.count-review {
    position: absolute;
    right: 5px;
    top: 6px;
    background: red;
    font-size: 10px;
    width: 16px;
    height: 16px;
    color: white;
    border-radius: 50%;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: pulseShadow 1.5s infinite;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.photo-sections-pro-gal {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.photo-section-card-pro {
    cursor: pointer;
}

.photo-thumb-pro-gal {
    width: 300px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    background: #f2f2f2;
}

.photo-thumb-pro-gal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-info-pro-gal {
    margin-top: 8px;
}

.photo-info-pro-gal h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.photo-info-pro-gal span {
    font-size: 13px;
    color: #777;
}

.photo-section-card-pro:hover img {
    transform: scale(1.05);
    transition: .3s ease;
}

.photo-modal-pro-gal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
}

.photo-modal-content-pro-gal {
    background: white;
    max-width: 900px;
    margin: 5% auto;
    padding: 25px;
    border-radius: 15px;
}

.close-modal-pro-gal {
    float: right;
    cursor: pointer;
    font-size: 22px;
}



.modal-photo-grid-pro-gal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    
    grid-auto-rows: 150px;
    gap: 10px;
    grid-auto-flow: dense;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-photo.active {
    grid-column: span 2; 
    grid-row: span 2;   
    z-index: 10;
}

.modal-photo.active img {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.delete-photo {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.addphoto-modal-pro-gal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
}

.addphoto-modal-content-pro-gal {
    background: #fff;
    max-width: 800px;
    margin: 5% auto;
    padding: 25px;
    border-radius: 15px;
    overflow: auto;
    max-height: 80vh;
}

.addphoto-close-pro-gal {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

.addphoto-form-group-pro-gal label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.addphoto-form-group-pro-gal select,
.addphoto-form-group-pro-gal input[type="file"] {
    width: 100%;
}

.addphoto-btn-submit-pro-gal {
    background: black;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
}

.addphoto-dropzone-pro-gal {
    border: 2px dashed #ddd;
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    background: #fafafa;
}

.addphoto-dropzone-pro-gal:hover,
.addphoto-dropzone-pro-gal.active {
    border-color: #000;
    background: #f4f4f4;
}

.addphoto-dropzone-pro-gal p {
    margin: 0;
    font-weight: 600;
}

.addphoto-dropzone-pro-gal span {
    font-size: 13px;
    color: #777;
}

.addphoto-preview-pro-gal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.addphoto-preview-pro-gal img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.progal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




@media (max-width: 480px) {
    .photo-thumb-pro-gal {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .photo-modal-content-pro-gal {
        background: white;
        max-width: 90% !important;
        margin: 5% auto;
        padding: 10px;
        border-radius: 15px;
        height: 90vh;
        overflow: scroll;
    }
    
    .addphoto-preview-pro-gal {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        margin-top: 15px;
    }
    
    .addphoto-modal-content-pro-gal {
        background: #fff;
        max-width: 90% !important;
        margin: 5% auto;
        padding: 10px;
        border-radius: 15px;
        overflow: auto;
        height: 90vh !important;
    }
}



.backarrow {
    display: none;
}

/* Hilangkan spinner di Chrome, Edge, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hilangkan spinner di Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.colorhead {
            color:black;
        }
.resortstar {
            display: flex;
            justify-content: flex-start;
        }
        
        
.loginaccount {
                                font-weight: 600;
                                text-decoration: underline;
                                margin-right: 10px;
                            }
.headerbook {
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                            }                            
                            

.roompopupbody {
                                                    background: transparent;
                                                    border-radius: 10px;
                                                    max-width: 75%;
                                                    width: 75%;
                                                    position: relative;
                                                    height: 95%;
                                                    overflow: hidden;
                                                }
                                                
.bodypopup {
                                                    background: white;
                                                    height: 85%;
                                                    overflow: scroll;
                                                    border-radius: 15px;
                                                    padding: 10px;
                                                    margin-bottom: 5px;
                                                    overflow-x: auto;
                                                }
 .bodypopupprice {
                                                    background: white;
                                                    height: 15%;
                                                    display: flex;
                                                    border-radius: 15px;
                                                    padding: 10px 30px;
                                                    align-items: center;
                                                    justify-content: space-between;
                                                }
                                                
@media (max-width: 576px) {
                                                    .roompopupbody {
                                                        max-width: 95%;
                                                        width: 95%;
                                                        position: relative;
                                                        height: 95% !important;
                                                    }
                                                }                                                
                                                

.account-menu {
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: black;
    font-size: 1em;
}

.img-menu {
    max-width: 25px;
    margin-right: 20px;
}

.switchbutton {
    position: sticky;
    bottom: 20px;
    margin: 0px auto;
    width: 100%;
    text-align: center;
    display: none;
}

.centerform {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#headerdropArea {
    border: 2px dashed #aaa;
    padding: 20px;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
}

.propery-logo-header-popup {
    display:none;
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.5); 
    justify-content:center; 
    align-items:center; 
    z-index:9999;
}

.propery-logo-header-popup-body {
    background:white; 
    padding:20px; 
    border-radius:15px; 
    width:400px; 
    text-align:center; 
    position:relative;
}

.propery-logo-header-popup-drop {
    border:2px dashed #ccc;
    padding:20px; 
    border-radius:10px;
    cursor:pointer;
    justify-content: center;
}

.propery-logo-header-popup-button {
    padding: 5px 20px;
    border-radius: 25px;
    border: none;
    background: black;
    color: white;
}

.propery-logo-header-popup-button-flex {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top:10px;
}

.propery-logo-header-popup-button-cancel {
    color:black;
    border: none;
    background: none;
    padding: 0px;
}

.c-card-picture {
                                            height: 300px;
                                            width: 100%;
                                            background: #fff0d5;
                                            border-radius: 25px;
                                            display: flex;
                                            justify-content: center;
                                            align-items: center;
                                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
                                        }
                                        
                                        .pic-img {
                                            width: 130px;
                                            height: 130px;
                                            object-fit: cover;
                                            border-radius: 50%;
                                        }
                                        
                                        .cam-avatar {
                                            width: fit-content;
                                            position: absolute;
                                            font-size: 25px;
                                            color: grey;
                                            opacity: 0.5;
                                            bottom: 10px;
                                            right: 0;
                                        }

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    position: relative;
    overflow-y: scroll;
    max-height: 90vh;
}


.close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

.close-popupwidget {
                            position: absolute;
                            top: 8px;
                            right: 12px;
                            font-size: 22px;
                            cursor: pointer;
                        }
                        
.btn-book {
                            display: inline-block;
                            margin-top: 15px;
                            padding: 10px 15px;
                            background: #ff5a5f;
                            color: #fff;
                            text-decoration: none;
                            border-radius: 5px;
                        }
                        
.butposition {
                            display: flex;
                            justify-content: flex-end;
                            align-items: center;
                        }
                        
.facility-list {
                            list-style: none;
                            padding: 0;
                            margin: 0;
                        
                            display: grid;
                            grid-template-columns: repeat(4, 1fr); 
                            gap: 12px 20px; 
                        }
                        
                        .facility-list li {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                        
                            font-size: 14px;
                            color: #000;
                        }
                        
                        .facility-list i {
                            width: 18px;          
                            text-align: center;
                            font-size: 16px;
                            color: #000;       
                            flex-shrink: 0;
                        }
                        
                        .facility-list span {
                            line-height: 1.4;
                        }
                        .logopro {
                            max-width: 80px;
                            margin-left: 0px;
                            margin-right: auto;
                            display: block;
                        }

@media (max-width: 768px) {
                            .butposition {
                                justify-content: start !important;
                            }
                            .facility-list {
                                grid-template-columns: repeat(2, 1fr);
                            }
                            .logopro {
                                max-width: 80px;
                                margin-left: 0px !important;
                                margin-right: auto;
                                display: block;
                            }
                        }
                        
                        
                        
                        
.property-img-head {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.property-header-img::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 70vh;
    pointer-events: none;
}

.property-header-img {
    min-height: 400px;
    background-color: #00000045;
    position: relative;
}

.modal-kyc {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

/* OVERLAY */
.modal-kyc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}

/* BOX */
.modal-kyc-box {
    position: relative;
    background: #fff;
    width: 85%;
    max-width: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    animation: scaleIn .25s ease;
}

/* CLOSE */
.modal-kyc-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* CONTENT */
.modal-kyc-box h3 {
    margin-bottom: 8px;
}

.modal-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* STEPS */
.kyc-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.kyc-step {
    background: #f7f7f7;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
}

/* BUTTON */
.btn-kyc-start {
    background: #ff9f1c;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 14px;
    font-weight: bold;
    cursor: pointer;
}

.btn-kyc-start:hover {
    background: #ff8c00;
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(.9);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}


.kyc-featured {
    position: absolute;
    top: 10px;
    font-size: 9px;
    right: 10px;
    padding: 2px 10px;
    background: black;
    color: white;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.desk-room-l {
    display:flex;
    justify-content: space-between;
    margin-bottom:50px;
}

@media (max-width: 640px) {
    .kyc-upload-container {
        grid-template-columns: 1fr;
    }
    
    .headaccount-pro {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .headaccount-img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .headaccount-icon {
        width: 40px;
        height: 40px;
        display: flex;
        text-align: center;
        background: #f1f1f1;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }
    
    .flex-icon-acc {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    
    
    .desk-room-l {
        display: none !important;
    }
    
   
}

.kyc-upload-label input {
    display: none;
    
}





.kyc-upload-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.kyc-upload-box {
    width: 100%;
}

.kyc-upload-label {
    display: block;
    width: 100%;
}

.kyc-upload-area {
    width: 100%;
    box-sizing: border-box;
}


.kyc-upload-area {
    border: 2px dashed #ddd;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: .25s;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kyc-upload-area:hover {
    border-color: #ff9f1c;
    background: #fff6e9;
}

.kyc-placeholder .icon {
    font-size: 38px;
    margin-bottom: 8px;
}

.kyc-placeholder b {
    display: block;
    font-size: 15px;
}

.kyc-placeholder small {
    color: #777;
}

/* PREVIEW */
.kyc-upload-area img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 14px;
    object-fit: contain;
}



.eye-room {
   background: #ebebeb;
    color: #000000;
    border-radius: 50%;
    text-align: center;
    margin: 0px;
    padding: 5px 12px;
}

.imgmenu {
                width: 24px;
                transition: transform 0.25s ease;
            }
            
            .sidebar-link:hover .imgmenu {
                transform: translateX(5px) scale(1.1);
            }
            
            .backdiv {
                min-height: 200px;
                background: #fff9f0;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
            }
            
            .image-stack {
                position: relative;
                height: 120px;
                margin-bottom: 20px;
                margin-top: 20px;
            }
            
            .image-stack .img {
                position: absolute;
                width: 120px;
                height: 90px;
                object-fit: cover;
                border-radius: 14px;
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            }
            
            .img-left {
                left: 0;
                top: 20px;
                transform: rotate(-6deg);
            }
            
            .img-center {
                left: 50%;
                top: 0;
                transform: translateX(-50%);
                z-index: 2;
            }
            
            .img-right {
                right: 0;
                top: 20px;
                transform: rotate(6deg);
            }

.btn-google {
    display: block;
    border: 1px solid grey;
    border-radius: 25px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    width: 100% !important;
    color:black;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-google:hover {
    background: black;
    color:white;
}

.card {
    border: none;
    box-shadow: none !important;
    padding: 12px;
}

.card-title {
    font-size: 2em;
    font-weight: bold;
}    
    
.text-primary {
    color : #000 !important;
}

.form-check-input.primary:checked {
    background-color: #000 !important;
    border: #2b2b2b !important;
}

.form-control {
    border : var(--bs-border-width) solid #e1e1e1 !important;
}

.navbar-expand-lg {
    justify-content : none !important;
}

.menuna {
    color: #222222;
    font-size: 2rem;
    line-height: 1.43;
}


#sidebarmenu {
  position: fixed;
  top: 0px;
  left: -400px; 
  width: 400px;
  height: 100%;
  background: #fff;
  transition: all 0.5s ease;
  z-index: 10001;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  border-radius: 0px 20px 20px 0px;
}

#sidebarmenu.active {
  left: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999; 
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

.menudashboard {
    padding: 10px 5px 20px 30px;
    margin-left: 10px;
}

.menuname {
    margin-left: 10px;
    font-weight: 500;
    font-size: 0.84rem;
    color: #545454;
}

.menuli {
    margin-left: 20px;
    padding: 10px 5px;
}

#dropArea {
    border: 2px dashed #aaa;
    padding: 20px;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
}
#dropArea.highlight {
    background:#f0f0f0;
}

#preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.appstyle {
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 10px;
    width: 150px;
    display: block;
}

.createroom {
    font-size: 1.3em;
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid #a7a7a7;
    width: fit-content;
    padding: 30px 80px;
    border-radius: 10px;
    background:transparent;
}

.divcreateroom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.imgic {
    width: 60px;
    margin-bottom: 10px;
}

.getstartedbutton {
    margin-top: 20px;
    padding: 10px 30px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(to left, #3a8b74, #4abc9a);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.getstartedbutton:hover {
    opacity: 0.9;
}

#createroom, 
#getsintro, 
#formroom {
    display: none;
}

.row-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
    display: block;
}

.row-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.ttt-in {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
}

.fff-wif {
    display: flex!important;
    gap: 30px;
}

.formroomadd {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #efefef;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 0px;
    width: 100%;
}

.formroomadd:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.inputmodals {
    border: none;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: transparent;
}

.form-check {
    min-height: 2em !important;
}

.iconaddroom {
    border-radius: 25px;
    background: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 40px;
    width:40px;
    color: black;
}

.room-bg {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px; 
    
    position: relative;
    height: 260px; 
    overflow: hidden;
}



.statusroom {
    font-size: 12px;
    width: fit-content;
    position: absolute;
    border-radius: 25px;
    margin-top: 20px;
    margin-left: 20px;
    font-weight: 600;
    padding: 5px 10px;
}

.roomname {
    padding: 20px;
    color: white;
    position: absolute;
    bottom: 0px;
}

.roomnamedetail {
    font-weight: bold;
    letter-spacing: 0.5px;
    margin:0px;
    color:white;
}

.roomname p {
    color: white;
}

.btnsubmitroom {
    width: 100px;
    margin-top: 20px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.buttonproperty {
    color: white;
    padding: 5px 20px;
    background: linear-gradient(135deg, #ff2f92, #ff7a18);
    height:45px;
    border-radius: 25px;
    border:none;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
}

.buttonproperty:hover {
    color: white;
    background: linear-gradient(135deg, #ff7a18, #ff2f92);
}

.head-css-property {
    display:flex;
    justify-content: space-between;
}

.cssmenu-property {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-width: 300px;
}

.card-build {
    padding: 20px;
    border-radius: 12px;
    height: 230px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    font-weight: bold;
    align-content: space-between;
    flex-wrap: wrap;
}


ol li img {
    max-width: 100%;
    height: auto;
    display: block;
}

#nextBtn {
    height: 45px !important;
    border-radius: 25px !important;
}

#prevBtn {
    height: 45px !important;
    border-radius: 25px !important;
}

.head-mob {
    display: none;
}

.fin-text {
    display: block;
}

    
    
    .mob-view {
        display:none ;
    }

@media(max-width: 680px) {
    
    .container-main {
        padding: 0px;
    }
    
    .card {
        padding: 0px;
        background: transparent;
        box-shadow: none;
    }
    
    .fin-text {
        display: none !important;
    }
    
    .head-mob {
        display: block !important;
    }
    
    .desk-view {
        display: none !important;
    }
    
    .mob-view {
        display:block !important;
    }


                            
                            .status {
                                padding: 0px !important;
                            }
                            .padt {
                                border-bottom: 1px solid #dbdbdb;
                                padding-bottom: 20px;
                                min-width: 300px;
                            }
                            .container-fluid {
                                padding-top: 15px !important;
                                max-width: 100%;
                            }
                            .modal-overlay {
                                padding: 10px;
                            }
                            .modal-title {
                                font-size:20px !important;
                            }
                            
                            
                        }
                        
                        .booking-table-mobile {
                            width: 100%;
                            border-collapse: separate;
                            border-spacing: 0 20px;
                        }
                        
                        .booking-table-mobile tr {
                            display: block;
                            width: 100%;
                        }
                        
                        .booking-table-mobile td {
                            display: block;
                            width: 100%;
                        }
                        
                        .booking-table-mobile thead {
                            display: none;
                        }
                        
                        .booking-table-mobile {
                            display: none;
                        }
                        
                        .booking-table-wrapper {
                            font-family: Arial, sans-serif;
                            padding: 0px;
                            margin-top: 20px;
                        }
                        
                        .table-controls {
                            display: flex;
                            justify-content: space-between;
                            margin-bottom: 15px;
                        }
                        
                        #searchInput {
                            width: 200px;
                            padding: 8px 12px;
                            border: 1px solid #ccc;
                            border-radius: 6px;
                        }
                        
                        #rowsPerPage {
                            padding: 8px;
                            border-radius: 6px;
                            border: none;
                            color: grey;
                            font-size: 12px;
                        }
                        
                        #pageInfo {
                            padding: 6px 12px;
                            border: none;
                            background: white;
                            cursor: pointer;
                            border-radius: 5px;
                            font-size: 12px;
                            color: grey;
                        }
                        /* TABLE */
                        
                        .booking-table {
                            width: 100%;
                            border-collapse: collapse;
                            font-size: 14px;
                        }
                        
                        .booking-table thead th {
                            padding: 12px 10px;
                            font-weight: bold;
                            border-bottom: 1px solid #ddd;
                            cursor: pointer;
                        }
                        
                        .booking-table tbody td {
                            padding: 14px 10px;
                            border-bottom: 1px solid #eee;
                        }
                        
                        .booking-table tbody tr:hover {
                            background: #f9f9f9;
                        }
                        /* STATUS */
                        
                        .status {
                            font-size: 13px;
                            padding: 4px 6px;
                            border-radius: 4px;
                            font-weight: bold;
                        }
                        
                        .status-green {
                            color: #1e9b3b;
                        }
                        .desktable td {
                            vertical-align: top;
                        }
                        .status-red {
                            color: red;
                        }
                        
                        .status-upcoming {
                            color: black;
                        }
                        
                        .guest-name {
                            font-weight: bold;
                            color: black;
                        }
                        .rm-name {
                            font-weight: bold;
                            color: black;
                        }
                        .bk-name {
                            font-weight: bold !important;
                            color: black;
                        }
                        .gp-name {
                            font-weight: bold !important;
                            color: black;
                        }
                        
                        .guest-sub {
                            font-size: 12px;
                            color: #777;
                        }
                        /* DETAIL BUTTON */
                        
                        .btn-details {
                            background: white;
                            border: 1px solid #333;
                            padding: 6px 14px;
                            border-radius: 6px;
                            cursor: pointer;
                        }
                        
                        .btn-details:hover {
                            background-color: #efefef;
                        }
                        /* PAGINATION */
                        
                        .pagination {
                            margin-top: 15px;
                            display: flex;
                            justify-content: center;
                            gap: 10px;
                        }
                        
                        .pagination button {
                            padding: 6px 12px;
                            border: none;
                            background: white;
                            cursor: pointer;
                            border-radius: 5px;
                            font-size: 12px;
                            color: grey;
                        }
                        
                        .pagination button:hover {
                            background: transparent;
                        }
                        
                        .modal-overlay {
                            position: fixed;
                            inset: 0;
                            background: rgba(0, 0, 0, 0.45);
                            display: none;
                            justify-content: center;
                            align-items: center;
                            padding: 30px;
                            z-index: 9999;
                        }
                        
                        .modal-box {
                            background: white;
                            width: 600px;
                            max-height: 80vh;
                            overflow-y: auto;
                            padding: 30px;
                            border-radius: 18px;
                            position: relative;
                            animation: slideUp .25s ease;
                            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
                        }
                        
                        @keyframes slideUp {
                            from {
                                transform: translateY(30px);
                                opacity: 0;
                            }
                            to {
                                transform: translateY(0);
                                opacity: 1;
                            }
                        }
                        
                        .modal-close {
                            position: absolute;
                            top: 12px;
                            left: 22px;
                            background: transparent;
                            border: none;
                            font-size: 22px;
                            cursor: pointer;
                        }
                        
                        .modal-print {
                            position: absolute;
                            top: 20px;
                            right: 25px;
                            padding: 8px 18px;
                            background: white;
                            border: 1px solid #444;
                            border-radius: 8px;
                            cursor: pointer;
                        }
                        
                        .modal-title {
                            font-size:30px ;
                        }
                        /* CONTENT */
                        
                        .guest-section {
                            margin-top: 30px;
                        }
                        
                        .guest-status {
                            color: #1e9b3b;
                            font-weight: bold;
                        }
                        
                        .guest-header {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin-top: 15px;
                        }
                        
                        .guest-avatar {
                            width: 55px;
                            height: 55px;
                            border-radius: 50%;
                            object-fit: cover;
                        }
                        
                        hr {
                            margin: 25px 0;
                        }
                        
                        .review-section p {
                            margin-top: 8px;
                        }
                        
                        .menu-reser {
                            display: flex;
                            width: 300px;
                            align-items: center;
                            justify-content: space-between;
                            margin-bottom: 10px;
                        }
                        
                        .reserv:hover {
                            color: black;
                            font-weight: 600;
                        }
                        
                        
                        
                        .container-fluid {
                            padding-top: 15px !important;
                            max-width: 85%;
                        }
                        
                        .btn-pay {
                            background: #84ff00;
                            border: none;
                            padding: 6px;
                            border-radius: 6px;
                            color:black;
                        }
                        .booking-tabs { display:flex; gap:10px; margin-bottom:20px; }
                        .tab-btn.spacetab {
                            text-decoration:none;
                            color:#000;
                            transition: all 0.2s;
                        }
                                        
                        .tab-btn.spacetab:hover {
                            background:transparent;
                        }
                                        
                        .tab-btn.spacetab.active {
                            font-weight: bold; 
                            color:#000;     
                            text-decoration: underline;
                        }
                        
                        .form-control {
                            height: 50px !important;
                        }
                        
                        .head-prsnl {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                        }


@media (max-width: 767.98px) {
    .backarrow {
        display: block;
        margin-top: 0px;
    }
    .mt5 {
        margin-top:80px;
    }
    
    .text-end {
        text-align: left !important;
    }
            
    
    
    .mobvis {
        display:none;
    }
    
    .head-css-property {
        display:block;
    }
    
    .cssmenu-property {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .card-body {
        padding:10px !important;
        border: none !important;
        
    }
}


#bookingPopup,
#bookingOverlay,
.btn-book-mobile {
    display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;top: 0;
  width: 100%;height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  text-align: left;
}

.close {
  float: right;
    font-size: 22px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 5px;
}
.number-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}

.number-input button {
    min-width: 35px;
    min-height: 35px;
    border: 1px solid #c6c6c6;
    background: transparent;
    color: #c6c6c6;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
}

.number-input input {
  width: 100%;
  text-align: center;
  margin: 0 8px;
  padding: 3px;
    font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.save-btn {
  background: #4abc9a;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#preview img {
    width: 115px !important;
    height: 115px !important;
    
}

.policy-label {
    text-align: left;
    width: 100%;
    padding: 20px;
    border: 1px solid #c6c6c6;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;   
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.review-text:hover {
    color: #c6c6c6; 
    text-decoration: underline;
}

.review-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

body .datepicker table tr td.active {
    background-color:#000 !important;
}

.amenities-list {
    list-style: none;
    padding: 0;
    columns: 2;        
    column-gap: 40px;
}

.amenities-list li {
    margin-bottom: 8px;
    color:black;
    
}

.room-important {
    border: 1px solid #c6c6c6;
    padding: 15px;
    border-radius:15px;
    margin-left: 5px;
    margin-right: 5px;
}

.property-headroom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amenities-list i {
    margin-right: 8px;
    color: #2a3547;
}

.cardpro {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.p-property {
    margin: 0px;
    color: black;
    text-align: left;
}

p, span, b {
 color:black;   
}

.slider {
    display: none;
}

.popup-room-photo {
    display: none;
}

.roomtitle-detail {
        font-size: 2em;
    }

.proomtitle {
    text-align: left;
}
.modal-content-rsv {
    background: #fff;
    border-radius: 12px;
    text-align: left;
}

.modal-content-rsv a {
    color: black;
    display: flex;
    align-items: center;
}

.booking-card {
                                                                    background: #f4f4f4;
                                                                    border-radius: 25px;
                                                                    margin-bottom: 16px;
                                                                    transition: all .25s ease;
                                                                }
                                                                
                                                                
                                                                .booking-highlight {
                                                                    padding: 0;
                                                                }
                                                                
                                                                
                                                                
                                                                
                                                                .booking-highlight img {
                                                                    height: 250px;
                                                                    object-fit: cover;
                                                                }
                                                                
                                                                .row-highlight {
                                                                    height: 100%;
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    justify-content: space-between;
                                                                    padding: 20px 20px 20px 40px;
                                                                }
                                                                
                                                                .badge-status {
                                                                    position: absolute;
                                                                    margin: 10px;
                                                                    font-size: 12px;
                                                                    padding: 6px 10px;
                                                                    border-radius: 12px;
                                                                    color: #fff;
                                                                    z-index: 2;
                                                                }
                                                                
                                                                .badge-confirmed { background: #2ecc71; }
                                                                .badge-pending   { background: #f39c12; }
                                                                .badge-cancelled { background: #e74c3c; }
                                                                .badge-completed { background: #3498db; }
                                                                .badge-default   { background: #7f8c8d; }
                                                                .badge-past { background: green !important;color: #fff; }
                                                                

                                                                
                                                                
                                                                
                                                                .booking-compact {
                                                                    padding: 8px 12px;
                                                                    background: #fff;
                                                                }
                                                                
                                                                .booking-compact img {
                                                                    height: 100px;
                                                                    object-fit: cover;
                                                                }
                                                                
                                                                .booking-compact .rmname {
                                                                    font-size: 13px;
                                                                    margin-top: 10px;
                                                                }
                                                                
                                                                .booking-compact .btn {
                                                                    padding: 6px 14px;
                                                                    font-size: 13px;
                                                                }
                                                                
                                                                .badge-today {
                                                                    background-color: #71b271;
                                                                    position: absolute;
                                                                    margin: 10px;
                                                                    font-size: 12px;
                                                                }
                                                                
                                                                .badge-upcoming {
                                                                    background-color: #e5a65a;
                                                                    position: absolute;
                                                                    margin: 10px;
                                                                    font-size: 12px;
                                                                }
                                                                
                                                                
                                                                .rmname {
                                                                    color: black;
                                                                    font-weight: bold;
                                                                }
                                                                
                                                                
                                                                .padview {
                                                                    display: flex;
                                                                    align-items: flex-end;
                                                                    justify-content: flex-end;
                                                                }
                                                                
                                                                .padrowdetail {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    align-content: space-between;
                                                                    max-height: 100px;
                                                                    padding: 10px 10px 10px 40px;
                                                                    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
                                                                    border-radius: 0px 25px 25px 0px;
                                                                    background: #f8f8f8;
                                                                }
                                                                
                                                                .stay-period {
                                                                    color: black;
                                                                    font-weight: 600;
                                                                    font-size: 13px;
                                                                }
                                                                
                                                                .image-compact {
                                                                    width:100%;
                                                                    border-radius:25px 0 0 25px;
                                                                    height: 100px;
                                                                }
                                                                
                                                                .borderrow {
                                                                    border-radius: 25px 0 0 25px;
                                                                }
                                                                
                                                                    .date-badge{
                                                                        font-size:10px;
                                                                        font-weight:bold;
                                                                        padding:10px 14px;
                                                                        background:black;
                                                                        color:white;
                                                                        border-radius:50%;
                                                                        text-align:center;
                                                                        position: relative;
                                                                    }
                                                                    
                                                                    .date-badge::after{
                                                                        content: "";
                                                                        position: absolute;
                                                                        right: -20px;          
                                                                        width: 20px;           
                                                                        height: 2px;           
                                                                        background: #dbdbdb;
                                                                        top: 50%;
                                                                        transform: translateY(-50%);
                                                                    }
                                                                
                                                                @media (min-width: 768px) {
                                                                    .row-highlight {
                                                                        max-height: 250px;
                                                                    }
                                                                    .booking-highlight .row {
                                                                        max-height: 250px;
                                                                    }
                                                                    
                                                                    
                                                                    
                                                                }
                                                                
                                                                @media (max-width: 768px) {
                                                                    .padrowdetail {
                                                                        padding: 10px 10px 10px 10px;
                                                                    }
                                                                    
                                                                    .image-compact {
                                                                        border-radius: 25px 25px 0px 0px;
                                                                    }
                                                                    
                                                                    .borderrow {
                                                                        border-radius: 25px 25px 0px 0px;
                                                                    }
                                                                    
                                                                    .padrowdetail {
                                                                        border-radius: 0px 0px 25px 25px;
                                                                        height: 140px;
                                                                        max-height: 140px;
                                                                        min-height: 140px;
                                                                    }
                                                                    
                                                                    .date-badge::after{
                                                                        display: none;
                                                                    }
                                                                    
                                                                    .mm-3 {
                                                                        margin-top: 10px;
                                                                    }
                                                                    
                                                                }
.editor-css {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 15px;
}

.editor-css:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.editor-css p {
    margin: 0px;
    font-size: 15px;
    color: grey !important;
}

.editor-css label {
    font-size: 12px;
    font-weight: bold;
    color:black;
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: unset !important;
}

.amenities-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.amenities-list i {
    color: #28a745;
    margin-right: 8px;
}

.editor-height {
    height: 90vh;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    
}

.br-right {
    border-right : 1px solid #ebebeb;
}

.editor-height::-webkit-scrollbar {
    width: 6px;
}

.editor-height::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.row-room {
    position: relative;
    padding-bottom: 150px;
}

.editrooms-wrapper {
    position: sticky;
    bottom: 130px;
    width: 100%;
    max-width: 540px; 
    text-align: center;

    pointer-events: none;
}

.editrooms {
    pointer-events: auto;
    display: inline-block;
    padding: 8px 25px;
    background: black;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

.btn-addphoto {
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    color:black;
    background: #ebebeb;
}

.btn-editroom {
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    background: #ebebeb;
    color:black;
}

.pad-left {
        padding-left: 50px;
    } 
    
.pad-right {
        padding-right: 50px;
    }     
    
.h-text {
    color: black;
    font-weight: bold;
    text-decoration: underline;
}  

/* Room review */

.img-review-room {
    width:50px;
    height:50px;
    border-radius: 5px;
    object-fit: cover;
}


.room-item.active {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 45px;
}

.review-reply {
    background: #fafafa;
    border-left: 3px solid #ddd;
    padding: 10px;
    margin-top: 8px;
}

.left-review {
    min-height: 80vh;
    border-left: 1px solid #ebebeb;
    padding-left: 50px;
}

/* end Room review */


.review-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.review-modal-content {
    background: #fff;
    width: 600px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    height: 85vh;
    overflow: auto;
}

.review-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.review-modal textarea,
.review-modal select {
    width: 100%;
    margin-bottom: 10px;
}

.review-modal button {
    background: black;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
}

.roomview-css {
    color:black;
    font-weight: bold;
    text-decoration: underline;
}

.pro-guest-review {
    background: black;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
}

.pro-tabpanel {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.submit-reply {
    border: none;
    color: white;
    background: black;
    padding: 6px 20px;
    margin-top: 10px;
    border-radius: 25px;
}

.modal-detail-book {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-heading {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-end;
    justify-content: space-between;
}


/*room share*/

.text-share {
    text-decoration: none;
    gap: 5px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: black;
}

.btn-link:hover {
    color: black;
}

.modal-sharing {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;

}

.modal-share .modal-share-content {
    border-radius: 16px;
    padding: 8px;
}

.modal-share .modal-share-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.modal-share .modal-share-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

.modal-share .modal-share-title {
    font-weight: 600;
}

.modal-share .modal-share-meta {
    color: #777;
}

.modal-share .modal-share-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-share .modal-share-grid button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.modal-share .modal-share-grid button:hover {
    background: #f7f7f7;
}

.form-date-select {
    position: sticky;
    top: 12%;
}

.btn-favorite {
    background: transparent;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.btn-favorite.active {
    color: #e74c3c;
}

.btn-favorite.active i {
    color: #e74c3c;
}

.btn-favorite i {
    transition: transform 0.2s ease;
}

.btn-favorite.active i {
    color: #e74c3c;
    transform: scale(1.2);
    
}

.share-fav {
    display: flex;
    gap:20px;
}

.review-text {
    font-size: 12px;
    color: grey;
}





.custom-modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.custom-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.show-more {
    font-size: 11px;
    color: #007bff;
    cursor: pointer;
}

.custom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 2000;
}

.custom-modal-dialog {
    max-width: 800px;
    margin: 40px auto;
    width: 100%;
}

.custom-modal-content {
    background: #fff;
    border-radius: 25px;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.custom-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.pad-reply {
    margin-left: 20px;
    padding: 10px;
    background: #fff9f0;
    border-radius: 15px;
}

.u-review {
    display: flex;
    gap: 20px;
}


.add-email {
    border:none;
    background:transparent;
    padding: 0px;
    color:black;
    text-decoration: underline;
}

.email-input {
    display: flex;
    align-items: center;
    gap: 10px;
}





/* Modal Styles */
.slide-custom-modal-room {
    display: none;
    position: fixed;
    z-index: 1055;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    overflow: hidden;
}

.slide-custom-modal-room-dialog {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 90%;
}

.slide-custom-modal-room-content {
    position: relative;
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.slide-custom-modal-room-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.slide-custom-modal-room-counter {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 3px 10px;
    border-radius: 12px;
}

.slide-custom-modal-room-body {
    position: relative;
}

.slide-custom-modal-room-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-custom-modal-room-inner {
    display: flex;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.slide-custom-modal-room-item {
    position: relative;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-custom-modal-room-img {
    max-height: 80vh;
    object-fit: contain;
    width: 100%;
    transition: transform 0.3s ease;
}

/* Controls */
.slide-custom-modal-room-prev, .slide-custom-modal-room-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
}

.slide-custom-modal-room-photo-section {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 10;
    pointer-events: none; /* supaya tidak mengganggu swipe */
}

.slide-custom-modal-room-prev { left: 10px; }
.slide-custom-modal-room-next { right: 10px; }

.ccp-card {
    height: 200px;
    border-radius: 25px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
} 

.foot-mobile {
    display: none;
}

.layout-cal {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
}

.sidebar-cal {
    width: 350px;
    position: sticky;
    top: 80px;
}

.rm-cal-detail {
    display: flex;
    gap: 20px;
}

.rm-cal-detail-img {
    width: 80px;
    max-width: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
    height: auto;
}

.rm-cal-det {
    font-size: 11px;
}

.rm-bed-bath {
    display: flex;
    gap: 20px;
}

.pro-u-button {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.stikymob {
    display: none !important; 
    position: relative;
    padding: 10px;
    width: 100%;
    top: 0px;
    z-index: 999;
    margin-top: -70px;
}

.cccp-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}


/* MOBILE */
@media (max-width: 768px) {
    
    .ccp-card {
        height: 150px;
        border-radius: 25px;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .cccp-card {
        
        gap: 15px;
    }
    
    .ccp-card b {
            font-size: 12px;
            margin-top: 10px;
    }
    .ccp-card img {
            width:50px !important;
            height: 50px !important;
    }
    
    .month-cal {
        padding:0px !important;
    }
    
    .layout-cal {
        display: block;
    }
    
    .sidebar-cal {
        width: 100%;
        position: relative !important;
        top: 0px !important;
    }
    
    .foot-mobile {
        background: white;
        padding: 20px;
        display: block;
        position: sticky;
        bottom: 0px;
        border-top: 1px solid #dadada;
    }
    
    .afoot {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }
    
    .spanfoot {
        font-size: 10px;
    }
    
    .divfoot {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .modal-content-slide {
        text-align: left !important;
        padding: 0px;
        box-shadow: none;
        height: 75vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .modal-detail-book {
        display: flex;
        align-items: flex-start !important;
        justify-content: space-between;
        flex-direction: column !important;
    }
    
    .pad-left {
        padding-left: 10px;
    }
    
    .pad-right {
        padding-right: 10px;
    }   
    
    .br-right {
        border-right : none;
    }
    
    
    #booking-desktop {
        display: none;
    }

    .btn-book-mobile {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 999;
        height: auto;
        border-top: 1px solid #d7d7d7;
        background: white;
        padding:10px 20px;
    }

    #bookingOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 1000;
    }

    #bookingPopup {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
        background: #fff;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        z-index: 1001;
        overflow: hidden;
    }
    
    body.fp-scroll-lock {
      overflow: hidden !important;
      touch-action: none;
    }
    
    .property-headroom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .proomtitle {
        text-align: center;
        margin-bottom: 0px !important;
    }

    .cardpro {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
    }
    
    .p-property {
        margin: 0px;
        color: black;
        text-align: center;
    }
    
    .imgroomfour {
        display: none;
    }
    
    /* ===== SLIDER UTAMA ===== */
    .slider {
        width: 100%;
        display: block;
        max-width: 400px;
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
        margin: 0 auto;
    }
    
    .slides {
        display: flex;
        transition: transform 0.4s ease;
        max-height: 350px;
        height: 350px;
    }
    
    .roomtitle-detail {
        font-size: 1.8em;
        text-align: center;
    }
    
    .slide {
        width: 100%;
        flex-shrink: 0;
        object-fit: cover;
        cursor: pointer;
        user-select: none;
        
    }
    
    /* COUNTER SLIDER UTAMA */
    .counter {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 13px;
        z-index: 10;
    }
    
    /* ===== POPUP FULLSCREEN ===== */
    .popup-room-photo {
        position: fixed;
        inset: 0;
        background: white;
        display: none;
        z-index: 9999;
        overflow: hidden;
    }
    
    .popup-slides {
        display: flex;
        height: 100%;
        transition: transform 0.4s ease;
    }
    
    .popup-slide {
        width: 100vw;
        height: 90vh;
        object-fit: contain;
        flex-shrink: 0;
        cursor: grab;
        user-select: none;
        padding: 15px;
    }
    
    /* COUNTER POPUP */
    .popup-counter {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 10;
    }
    
    /* CLOSE BUTTON */
    .close-room-slide {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 32px;
        color: #000;
        cursor: pointer;
        z-index: 20;
        user-select: none;
    }
    
    .editor-height {
        height: auto;
        max-height: 100%;
        overflow-y: auto;
        position: relative;
    }
    
    

    .left-review {
        min-height: 80vh;
        border-left: 0px;
        padding-left: 10px;
        margin-top: 40px;
    }
    
    .review-modal-content {
        background: #fff;
        width: 85%;
        margin: 5% auto;
        padding: 20px;
        border-radius: 15px;
        position: relative;
        overflow: auto;
        
    }
    
    .pro-tabpanel {
        
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .modal-content {   
        text-align: left !important;
        padding: 0px;
        box-shadow: none;
        
    }
    
    .modal-box {
        padding: 15px;
    }
    
    .room-heading {
        display: flex;
        margin-bottom: 10px;
        justify-content: center !important;
        flex-wrap: wrap !important;
        align-items: flex-end !important;
        gap: 20px !important;
    }
    
    #sidebarmenu {
      position: fixed;
      top: 0px;
      left: -400px; 
      width: 300px;
      height: 100%;
      background: #fff;
      transition: all 0.5s ease;
      z-index: 10001;
      box-shadow: 2px 0 5px rgba(0,0,0,0.2);
      border-radius: 0px 20px 20px 0px;
    }
    
    .footer-grid-mb {
        display: none;
    }
    
    .switchbutton {
        display: block !important;
    }
    
    .buttonproperty {
        padding: 3px 15px;
    }
    
    .stikymob {
        display: block !important;
    }
    


    
    
    
}

