.no-results-box {
    max-width: 450px;
    margin: 40px auto;
    padding: 25px 30px;
    background: #fff1f3;
    border: 2px solid #e61e29;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 0.4s ease-out;
}

.no-results-icon {
    font-size: 3rem;
    color: #e61e29;
    margin-bottom: 10px;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b80012;
    margin-bottom: 8px;
}

.no-results-text {
    font-size: 1rem;
    color: #7a0008;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
