﻿
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Màu nền mờ */
    z-index: 1000;
    /* Đảm bảo nền mờ đè lên tất cả phần tử khác */
}

/* Popup container */
.popup-container_search {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Căn giữa màn hình */
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    /* Đảm bảo popup đè lên nền mờ */
    animation: slideIn 0.3s ease-out;
    min-width: 320px;
}

/* Hiệu ứng xuất hiện */
@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        /* Xuất hiện từ trên xuống */
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

#closePopup_search {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: initial;
    color: #000000;
    border: none;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    min-height: auto;
    line-height: 22px;
}

/* Hiển thị overlay và popup */
.overlay.active,
.popup-container_search.active {
    display: block;
}

.search-item_home1 br {
    display: none;
    /* Ẩn thẻ 
																																																											<br> */
}

.popup-content_search p {
    margin-top: 0;
    text-align: center;
    margin-bottom: 10px;
}

