@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row !important;
        justify-content: center;
    }

    .nav-item {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        position: relative;
        z-index: 1;
    }

    .navbar-collapse {
        position: fixed;
        top: 5%;
        left: 0;
        width: 100%;
        height: 30%;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        z-index: 2;
    }

    .navbar-toggler {
        position: relative;
        z-index: 3;
    }
}

@media (min-width: 992px) {
    .bg-image {
        height: 70vh;
        /* Adjust the height for PC screens */
    }
}

@media (max-width: 991px) {
    .bg-image {
        height: 40vh;
        /* Adjust the height for mobile screens */
    }
}

@media (min-width: 768px) {
    .pc-only {
        margin-top: 80px;
        /* Adjust the margin-top value as needed */
    }
}

/* .index a {
    color: black;
    text-decoration: none;
} */

.nav-link:focus,
.nav-link:hover,
.nav-link:active {
    color: #FF822E;
}

.nav-link.selected {
    color: #FF822E;
    text-decoration: underline;
    font-weight: bold;
}

@media (max-width: 768px) {
    .carousel-image {
        height: 25vh;
    }
}

.date-input-wrapper {
    position: relative;
    display: inline-block;
}

.transparent-input {
    z-index: 1;
}

.box-resize {
    border-radius: 4px;
    border: none;
    height: 80px;
    /* width: 100%; */
    width: 200px;
    text-align: center;
    background-color: #EFEFEF;
}

.selectize-input .caret {
    display: none !important;
}

.selectize-input {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80px;
    width: 200px;
    background-color: #EFEFEF;
}

@media (max-width: 767px) {
    .box-resize {
        width: 100%;
    }

    .selectize-input {
        width: 100%;
        /* max-width: 21rem; */
    }
}

.flight-type {
    font-weight: bold;
}

.room {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.room-label {
    font-weight: bold;
}

.counter {
    display: flex;
    align-items: center;
}

.counter input {
    text-align: center;
    width: 90px;
    border: none;
    background: none;
    font-size: 16px;
}

.counter button {
    background-color: transparent;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-custom {
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}

.btn-custom:hover {
    background-color: #ff6347;
}

.answer {
    display: none;
}

.toggle-button {
    cursor: pointer;
    font-size: 2em;
    margin-left: 10px;
    color: #FF822E;
}