/**
 * Security fixes CSS
 * Styling for security-related UI elements
 */

/* Error message styling (replaces inline styles) */
.error-message {
    color: #dc2626;
    margin: 0.25rem 0;
    font-size: 0.875rem;
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 0.375rem;
    padding: 0.75rem;
    line-height: 1.25rem;
}

.error-message::before {
    content: "⚠️ ";
    font-weight: bold;
}

/* No results styling enhancements */
.no-results {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.no-results p {
    margin: 0.5rem 0;
    color: #64748b;
}

.no-results-suggestion {
    font-size: 0.875rem;
    color: #94a3b8;
}