/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --secondary-blue: #1e40af;
    --accent-blue: #0ea5e9;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--neutral-800);
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    min-height: 100vh;
}

/* App Container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.app-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: var(--space-8) 0;
    box-shadow: var(--shadow-lg);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
    width: 100%;
}

/* Search Section */
.search-section {
    margin-bottom: var(--space-12);
}

.search-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
}

.search-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.search-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.search-header p {
    color: var(--neutral-600);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Form */
.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    margin-bottom: var(--space-6);
}

.input-group label {
    display: block;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.input-group input {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    transition: all var(--transition-fast);
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-group input::placeholder {
    color: var(--neutral-400);
}

.input-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--neutral-200);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: none;
}

.suggestion-item {
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.suggestion-item:hover {
    background: var(--neutral-50);
}

/* Search Options */
.search-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.option-group label {
    font-weight: 500;
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.radio-option:hover,
.checkbox-option:hover {
    background: var(--neutral-50);
}

.radio-option input,
.checkbox-option input {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid var(--neutral-300);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-custom {
    border-radius: var(--radius-sm);
}

.radio-option input:checked + .radio-custom {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.checkbox-option input:checked + .checkbox-custom {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.checkbox-option input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Search Button */
.search-button {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-md);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.search-button:active {
    transform: translateY(0);
}

.search-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Progress Section */
.progress-section {
    margin-bottom: var(--space-12);
}

.progress-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
}

.progress-indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

/* Spinner Animation */
.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--neutral-200);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-indicator h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
}

.progress-indicator p {
    color: var(--neutral-600);
    font-size: var(--font-size-lg);
    margin: 0;
    max-width: 500px;
}

/* Results Section */
.results-section {
    margin-bottom: var(--space-12);
    display: none; /* Hidden by default */
}

.results-container {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
    overflow: hidden;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}

.results-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-900);
}

.results-actions {
    display: flex;
    gap: var(--space-3);
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.action-button:active {
    transform: translateY(0);
}

.results-content {
    padding: var(--space-6);
}

/* Result Cards */
.result-card {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    border: 1px solid var(--neutral-200);
}

.result-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.result-content {
    color: var(--neutral-700);
    line-height: 1.7;
}

.result-content h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--neutral-800);
    margin: var(--space-4) 0 var(--space-2) 0;
}

.result-content ul {
    margin: var(--space-2) 0;
    padding-left: var(--space-6);
}

.result-content li {
    margin-bottom: var(--space-1);
}

.result-content strong {
    color: var(--neutral-900);
}

/* Error Section */
.error-section {
    margin-bottom: var(--space-12);
}

.error-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--error-red);
    text-align: center;
}

.error-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.error-container h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--error-red);
    margin-bottom: var(--space-3);
}

.error-container p {
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
}

.retry-button {
    padding: var(--space-3) var(--space-6);
    background: var(--error-red);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.retry-button:hover {
    background: #dc2626;
}

/* Footer */
.app-footer {
    background: var(--neutral-800);
    color: var(--neutral-300);
    padding: var(--space-6) 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: var(--space-4);
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--neutral-200);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-4) auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Authentication Styles */
.auth-section {
    margin-bottom: var(--space-12);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: transparent !important;
    background-color: transparent !important;
}

/* Force override for auth section */
#auth-section {
    background: transparent !important;
    background-color: transparent !important;
}

main .auth-section {
    background: transparent !important;
    background-color: transparent !important;
}

.auth-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
    max-width: 400px;
    width: 100%;
}


.auth-tabs {
    display: flex;
    margin-bottom: var(--space-6);
    background: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: var(--space-1);
}

.auth-tab {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.auth-tab.active {
    background: white;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.auth-content {
    position: relative;
}

.auth-form {
    display: none;
    color: var(--neutral-900);
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-900) !important;
    margin-bottom: var(--space-6);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--neutral-900) !important;
    margin-bottom: var(--space-2);
}

.form-group input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    color: var(--neutral-900) !important;
    background: white !important;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.form-group input::placeholder {
    color: var(--neutral-500);
}

.auth-button {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--space-4);
}

.auth-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.auth-button.secondary {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.auth-button.secondary:hover {
    background: var(--neutral-200);
    color: var(--neutral-800);
}

/* Social Login Styles */
.social-login {
    margin-top: var(--space-6);
}

.social-divider {
    display: flex;
    align-items: center;
    margin: var(--space-6) 0;
    color: var(--neutral-800);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--neutral-300);
}

.social-divider span {
    padding: 0 var(--space-4);
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    background: white;
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: var(--space-2);
}

.social-button:hover {
    border-color: var(--neutral-400);
    background: var(--neutral-50);
    color: var(--neutral-800);
}

.social-button.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.social-button.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-button.google {
    color: #db4437;
    border-color: #db4437;
}

.social-button.google:hover {
    background: #db4437;
    color: white;
}

.social-button.amazon {
    color: #ff9900;
    border-color: #ff9900;
}

.social-button.amazon:hover {
    background: #ff9900;
    color: white;
}

.social-button.apple {
    color: #000000;
    border-color: #000000;
}

.social-button.apple:hover {
    background: #000000;
    color: white;
}

.auth-links {
    text-align: center;
}

.auth-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
    color: var(--primary-blue-dark);
}

.verify-instructions {
    color: var(--neutral-800);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

/* User Profile Styles */
.user-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.user-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.user-details h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-1) 0;
}

.user-details p {
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
    margin: 0;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.toast {
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 320px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    color: white;
}

.toast-icon {
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.toast-message {
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.4;
}

.toast.success {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
}

.toast.error {
    background: linear-gradient(135deg, var(--error-red) 0%, #dc2626 100%);
}

.toast.warning {
    background: linear-gradient(135deg, var(--warning-orange) 0%, #d97706 100%);
}

.toast.info {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 var(--space-4);
    }
    
    .main-content {
        padding: var(--space-6) var(--space-4);
    }
    
    .search-container {
        padding: var(--space-6);
    }
    
    .search-options {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .results-header {
        flex-direction: column;
        gap: var(--space-4);
        align-items: stretch;
    }
    
    .results-actions {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .progress-indicator h3 {
        font-size: var(--font-size-xl);
    }
    
    .progress-indicator p {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: var(--font-size-2xl);
    }
    
    .tagline {
        font-size: var(--font-size-base);
    }
    
    .search-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .search-header p {
        font-size: var(--font-size-base);
    }
    
    .input-group input {
        font-size: var(--font-size-base);
        padding: var(--space-3);
    }
    
    .search-button {
        font-size: var(--font-size-base);
        padding: var(--space-3) var(--space-4);
    }
    
    .action-button {
        font-size: var(--font-size-base);
        padding: var(--space-3) var(--space-4);
    }
    
    .toast-container {
        top: var(--space-2);
        right: var(--space-2);
        left: var(--space-2);
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        padding: var(--space-3) var(--space-4);
    }
    
    .toast-message {
        font-size: var(--font-size-sm);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --neutral-50: #0f172a;
        --neutral-100: #1e293b;
        --neutral-200: #334155;
        --neutral-300: #475569;
        --neutral-400: #64748b;
        --neutral-500: #94a3b8;
        --neutral-600: #cbd5e1;
        --neutral-700: #e2e8f0;
        --neutral-800: #f1f5f9;
        --neutral-900: #f8fafc;
    }
    
    body {
        background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    }
    
    .search-container,
    .progress-container,
    .results-container {
        background: var(--neutral-100);
        border-color: var(--neutral-300);
    }
    
    .result-card {
        background: var(--neutral-200);
        border-color: var(--neutral-300);
    }
}
