.attraction-booking-section{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 60px;
    box-sizing: border-box;
    display: none;
    background-color: #FFFFFF;
}


/* Accommodation rooms component */
.accommodation-rooms-header{
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #D9EEF3;
}

.accommodation-rooms-header-left{
    width: 50%;
    height: 60%;
    border-right: 1px solid #D9EEF3;
}

.accommodation-rooms-header-right{
    width: 50%;
    height: 60%;
}

#people-number-container{
    margin: auto auto auto 40px;
}

.dates-people-container{
    position: relative;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.accommodation-flex-vertical{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.accommodation-rooms-header .accommodation-flex-vertical span{
    font-size: 14px;
}

.accommodation-rooms-header-arrow{
    margin: auto 0 auto auto;
}

#dates-container{
    margin: auto 40px auto auto;
}

.accommodation-rooms-header .drop-down{
    display: none;
    position: absolute;
    top: 100%;
    height: fit-content;
    max-height: 70vh;
    border-radius: 16px;
    background-color: #FFFFFF;
    border: 1px solid #D9EEF3;
    cursor: auto;
    box-shadow: 0px 8px 16px 0px #76777933;
    overflow-y: auto;
}

#people-number-container .drop-down{
    width: 400px;
    padding: 9px 9px 24px;
}

.accommodation-rooms-header .drop-down .drop-down-title{
    font-weight: bold;
    font-size: 16px;
    color: #212529;
}

#people-number-container .drop-down .drop-down-title{
    padding: 15px 15px 0px;
}

#dates-container .drop-down{
    width: 600px;
    padding: 24px;
}

.accommodation-rooms-body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.accommodation-rooms-body .filter-options-section{
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-right: 1px solid #D9EEF3;
}

.accommodation-rooms-body .filter-options-section span{
    font-size: 14px;
}

.accommodation-rooms-body .filter-options-section .filter-options-section-title{
    font-weight: bold;
    color: #4E4E4E;
}

.accommodation-rooms-body .filter-options-section div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.accommodation-rooms-body .filter-options-section .filter-options-checkbox{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background-image: url('/static/medias/app/icons/icon_checkbox_default.svg');
    background-repeat: no-repeat;
    cursor: pointer;
    transition: ease 0.3s all;
}

.accommodation-rooms-body .filter-options-section .filter-options-checkbox:checked{
    background-image: url('/static/medias/app/icons/icon_checkbox_checked.svg');
}

.accommodation-rooms-body .available-rooms-section{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    overflow-y: auto;
}

.accommodation-rooms-body .available-rooms-section .no-rooms-msg{
    display: none;
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    margin: 0 auto;
    color: #889596;
}

.accommodation-rooms-body .available-rooms-section .available-rooms-list{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
}

.available-rooms-section .available-rooms-list .room-card{
    width: 49%;
    height: 150px;
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 24px;
    background-color: #FFFFFF;
    border: 1px solid #D9EEF3;
}

.available-rooms-section .available-rooms-list .room-card .room-card-image{
    height: auto;
    border-radius: 8px;
}

.available-rooms-section .available-rooms-list .room-card .room-card-content{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 12px;
}

.available-rooms-list .room-card .room-name{
    font-weight: bold;
    font-size: 14px;
    color: #132D2F;
}

.available-rooms-list .room-card .room-price-container{
    width: 100%;
    height: fit-content;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.available-rooms-list .room-card .room-price-container .room-price{
    font-weight: 600;
    font-size: 15px;
    color: #FD8559;
}

.available-rooms-list .room-card .select-room{
    width: 50%;
    height: fit-content;
    border-radius: 8px;
    padding: 6px 12px;
    background-color: #68B9CF;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
    margin: auto 0 auto auto;
    cursor: pointer;
}


/* Selected room component */
.selected-room-component-left{
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.selected-room-component-left .room-selected-section{
    width: 100%;
    height: 210px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #F8F8F8;
}

.selected-room-component-left .room-selected-section .room-selected-title{
    font-weight: bold;
    font-size: 14px;
    color: #132D2F;
    margin-bottom: 12px;
}

.selected-room-component-left .room-details-container{
    width: 100%;
    height: 135px;
    display: flex;
    flex-direction: row;
}

.selected-room-component-left .room-details-container .room-image{
    height: auto;
    border-radius: 8px;
}

.selected-room-component-left .room-details-container .room-details{
    flex: 1;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 12px;
}

.selected-room-component-left .room-details-container .room-details .room-name{
    font-weight: bold;
    font-size: 14px;
    color: #132D2F;
}

.selected-room-component-left .room-details .date-participants-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.selected-room-component-left .room-details .date-participants-container > div{
    width: 48%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selected-room-component-left .room-details .date-participants-container span{
    font-size: 14px;
    color: #132D2F;
}

.selected-room-component-left .room-details .date-participants-container .date-container,
.selected-room-component-left .room-details .date-participants-container .participants-container{
    width: 100%;
    height: fit-content;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: #FFFFFF;
    border: 1px solid #E7E9E9;
}

.selected-room-component-left .traveller-details-section{
    width: 100%;
    flex: 1;
    padding: 24px 24px 50px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.selected-room-component-left .traveller-details-section .traveller-details-title{
    font-weight: bold;
    font-size: 14px;
    color: #132D2F;
    margin-bottom: 12px;
}

/* Traveller Details Styles */
.traveller-section {
    margin-bottom: 40px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.traveller-title {
    font-size: 15px;
    font-weight: normal;
    color: var(--color-text-priority-1);
    margin-bottom: 20px;
}

.traveller-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.traveller-field {
    flex: 1;
    display: flex;
    flex-direction: row;
}

.traveller-label {
    width: 30%;
    max-width: 75px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-priority-3);
    margin: auto 0;
}

.traveller-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D5D5;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-priority-1);
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.traveller-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.traveller-input::placeholder {
    color: #9CA3AF;
    font-size: 13px;
}

/* Phone Input Styles */
.phone-field {
    position: relative;
}

.phone-input-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid #D0D5D5;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: var(--color-primary);
}

.country-code-selector {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: #F8F9FA;
    border-right: 1px solid #D0D5D5;
    cursor: pointer;
    gap: 8px;
    min-width: 100px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.country-code {
    font-size: 14px;
    color: #132D2F;
    font-weight: 500;
}

.dropdown-arrow {
    width: 12px;
    height: 8px;
    color: #6B7280;
}

.phone-input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.phone-input:focus {
    border: none;
    outline: none;
}

.selected-room-component-right{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 60px;
    border-left: 1px solid #D9EEF3;
}

.selected-room-component-right .user-note-container{
    width: 100%;
    height: fit-content;
    padding: 24px;
}

.selected-room-component-right .user-note-container .user-note-container-title{
    font-weight: bold;
    font-size: 16px;
    color: #132D2F;
    margin-bottom: 12px;
}

.selected-room-component-right .user-note-container .user-note-input{
    width: 100%;
    height: 220px;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #E7E9E9;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.selected-room-component-right .user-note-container .user-note-input:focus{
    border-color: #42A8C3;
}

.selected-room-component-right .room-booking-summary{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    border-top: 1px solid #D9EEF3;
}

.selected-room-component-right .room-booking-summary span{
    font-size: 14px;
    color: #132D2F;
}

.room-booking-summary .booking-summary-flex-horizontal{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.room-booking-summary .booking-summary-flex-horizontal.nights-container{
    padding-bottom: 6px;
    border-bottom: 1px solid #E7E9E9;
}

.room-booking-summary span.total-price{
    font-weight: bold;
    font-size: 16px;
    color: #FD8559;
}

.room-booking-summary .room-booking-pay-btn{
    width: 100%;
    height: fit-content;
    padding: 6px 12px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    background-color: #FD8559;
    cursor: pointer;
}