/* =================================================================== */
/* === STYLING CHO TRANG "KHÔNG TÌM THẤY KẾT QUẢ" (HIỆN ĐẠI) === */
/* =================================================================== */

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0.5rem auto;
    max-width: 700px;
}

.no-results-icon {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.no-results .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.no-results .page-content p {
    font-size: 1.1rem;
    color: #64748b; /* Màu xám xanh dễ đọc */
    max-width: 500px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* --- Tùy chỉnh form tìm kiếm --- */
.no-results .search-form {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.no-results .search-field {
    width: 100%;
    height: 56px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 110px 0 20px; /* Chừa không gian cho nút bấm */
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.no-results .search-field:focus {
    border-color: #d40511;
    box-shadow: 0 0 0 3px rgba(212, 5, 17, 0.15);
}

.no-results .search-submit {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 44px;
    background-color: #d40511;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.no-results .search-submit:hover {
    background-color: #b9040f;
}