.room-info, .additional-info { 
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.6; 
}

.right-content-container {
    position: relative;
}

.btn-reserve {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 54px;
}

.modal-scrollable {
    max-height: 80vh;
    overflow-y: auto;
}

.img-item-list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.img-item {
    height: 80px;
    width: 130px;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-header {
    border-bottom: none;
}

.modal-body {
    padding-top: 0;
    overflow-y: auto;
}

.menu-item {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.highlight-box {
    background-color: #d0e2f5;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.modal-dialog {
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    height: 100vh;
}

.modal.right .modal-dialog {
    position: fixed;
    right: 0;
    margin-right: 0;
    width: 320px;
    height: 100%;
}

.modal.right .modal-body {
    padding: 15px 15px 80px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: white;
    border-top: 1px solid #eee;
}

footer .fs-7 {
    font-size: 0.9rem;
}

.destination-modal .modal-header {
    border-bottom: none;
    padding: 15px 15px 5px;
}

.destination-modal .modal-title {
    font-weight: bold;
    margin-left: 10px;
}

.destination-modal .modal-body {
    padding: 10px 15px;
}

.search-input {
    position: relative;
    margin-bottom: 20px;
}

.search-input input {
    padding-left: 40px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
}

.search-input .bi-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}


.confirm-btn {
    background-color: #3B5998;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    margin-top: 20px;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    margin: 0 auto !important;
}

.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}

.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
}

.calendar-day {
padding: 10px;
cursor: pointer;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin: 4px auto;
}

.calendar-day.selected {
background-color: #3B5998;
color: white;
}

.calendar-day.in-range {
background-color: #E7F0FF;
}

.calendar-weekday {
font-weight: 500;
margin-bottom: 10px;
}

.other-month {
color: #ccc;
}

.travel-period {
background-color: #f8f9fa;
border-radius: 30px;
padding: 10px 15px;
margin-top: 20px;
}

.btn:hover {
    color: #303030 !important;
    text-decoration: if($link-hover-decoration == underline, none, null);
    background-color: #ffffff !important;
    border-color: #404040 !important;
}

/* 반응형 설정 */
@media (min-width: 767px) {
    .destination-modal .modal-dialog {
        max-width: 500px;
    }

    .destination-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .calendar-month {
      margin-bottom: 20px;
    }
  }

@media (max-width: 767px) {
    .destination-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .btn-reserve {
        position: static;
    }    
}