.datetimepicker-custom {
    padding: 0;
}

.datetimepicker-custom:focus {
    border: none;
}

.main-header.header-one .main-menu .navbar-collapse .navigation .active {
    background: var(--primary-color);
}

/* Style for dropdown for login */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px; /* Hiển thị ngay dưới icon */
    
    right: 0;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 180px;
    border-radius: 6px;
    list-style: none;
}

.dropdown-menu li {
    padding: 5px 10px;
}

.dropdown-menu li a {
    color: black;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    text-decoration: underline;
}

.dropdown-menu.show {
    display: block;
}




/* css tour in page home  */
.block_tours {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* css tourdetail  */
.tour-gallery .gallery-between {
    height: 100%;
    padding-bottom: 10px;
}
.tour-gallery .gallery-item img {
    height: 100%;
    border-radius: 8px;
}

/****************************************
*              PAGE TOURS              *
* ***************************************/
.div_filter_clear {
    display: flex;
    justify-content: end;
}
.clear_filter {
    color: #fff;
    background-color: var(--bs-green);
    border-radius: 8px;
    padding: 2px 20px;
}

.loader {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid green;
    border-bottom: 16px solid green;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    display: none;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hidden-content {
    display: none; /* Ẩn nội dung */
}
.equal-block-fix {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
.equal-content-fix {
    justify-content: space-around;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
/****************************************
*              PAGE USER PROFILE        *
* ***************************************/
#card_change_password {
    display: none;
}

/****************************************
*              PAGE CHECKOUT            *
* ***************************************/
.booking-container {
    max-width: 1200px;
    margin: auto;
    padding-top: 20px;
    display: flex;
    gap: 24px;
}

.booking-container {
    .booking__infor {
        background-color: #f6f8fa;
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: none;
        gap: 16px;
        padding: 30px;
    }

    .booking-info {
        flex: 1;
    }

    .booking-summary {
        width: 400px;
    }

    /* Header */
    .booking-header {
        margin-bottom: 30px;
        font-size: 24px;
        font-weight: 700;
    }

    /* Form Styling */

    .booking__infor .form-group label {
        font-weight: 600;
        font-size: 1rem;
    }

    .booking__infor .form-group input {
        width: 100%;
        height: 56px;
        padding: 16px 17px;
        font-size: 1rem;
        border: 0px solid #e2e4e5;
        border-radius: 5px;
    }

    /* Quantity Selector */
    .booking__quantity {
        display: flex;
        gap: 24px;
    }

    .quantity-selector {
        width: 50%;
        display: flex;
        align-items: center;
        border: 1px solid #e2e4e5;
        padding: 20px;
        justify-content: space-between;
        gap: 48px;
    }

    .input__quanlity {
        display: flex;
        gap: 16px;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-weight: bold;
        border-radius: 5px;
        border: 2px solid #63ab45;
        color: #63ab45;
    }

    .quantity-input {
        padding: 0;
        width: 30px;
        text-align: center;
        border: none;
        font-size: 24px;
        line-height: 1;
        letter-spacing: 0em;
        font-weight: 500;
        color: #63ab45;
    }

    /* Payment Options */
    .payment-option {
        margin-bottom: 15px;
        padding: 15px;
        border: 1px solid #e2e4e5;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .payment-option img {
        width: 40px;
    }

    /* Privacy Agreement */
    .privacy-section {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 5px;
        font-size: 1rem;
        color: #333;
        text-align: center;
    }

    .privacy-checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
    }

    /* Order Summary */
    .order-summary {
        border-top: 1px solid #d6d6d6;
        margin-top: 20px;
        padding-top: 20px;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .total-price,
    .total-price-booked,
    .quantity__adults,
    .quantity__children,
    .quantity__adults-booked,
    .quantity__children-booked {
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* Button */
    .booking-btn, .booking-btn-coupon {
        width: 100%;
        padding: 15px;
        background-color: var(--secondary-color);
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    

    .summary-section {
        padding: 16px;
        box-shadow: 10px 10px 36px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 50px;
    }
    .order-coupon {
        border-top: 1px solid #d6d6d6;
        margin: 20px 0;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        gap: 2px;
        border-bottom: 1px solid #d6d6d6;
    }
    .order-coupon input {
        border-radius: 8px;
        border: 1px solid #e2e4e5;
    }
    .btn-submit-booking.inactive {
        background-color: #f3d5b1;
        cursor: not-allowed;
    }

    /* CSS cho thông báo lỗi */
    .error-message {
        color: red;
        font-size: 0.9em;
        display: none;
        margin-top: 5px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
    }

    .booking-summary {
        width: 100%;
        margin-top: 20px;
    }
}

.hide {
    display: none !important;
}

.comment-review-wrap .comment-ratting-item .ratting i {
    font-size: 36px;
}
.ratting i.active {
    color: var(--secondary-color);
}

/****************************************
*             DESTINATION               *
* ***************************************/
.tour-title {
    height: 40px;
    line-height: 1.2;
    overflow: hidden; /* Hide any text that overflows */
    text-overflow: ellipsis; /* Display "..." if text overflows */
    white-space: nowrap;
}

/****************************************
*             HANDLE SEARCH            *
* ***************************************/
#search_form .list {
    width: 100%;
    height: 250px;
    overflow-y: auto;
}
/****************************************
*             TOUR BOOKED            *
* ***************************************/
.truncate-3-lines {
    display: -webkit-box; /* Sử dụng Flexbox để xử lý text */
    /* -webkit-line-clamp: 3; Giới hạn số dòng hiển thị */
    -webkit-box-orient: vertical; /* Thiết lập hướng xử lý theo chiều dọc */
    overflow: hidden; /* Ẩn phần nội dung vượt quá */
    text-overflow: ellipsis; /* Thêm dấu ba chấm vào cuối */
    word-break: break-word; /* Đảm bảo từ không bị tràn ra ngoài */
}
