/* Search box prominent styling - responsive to light/dark mode */
.search-box {
    border: 3px solid #3b82f6 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    background: white !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2) !important;
    font-weight: 500 !important;
}

.search-box:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3) !important;
    outline: none !important;
}

.search-box::placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .search-box {
        background: #374151 !important;
        border-color: #60a5fa !important;
        color: #f9fafb !important;
        box-shadow: 0 4px 6px rgba(96, 165, 250, 0.3) !important;
    }

    .search-box:focus {
        border-color: #93c5fd !important;
        box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.4) !important;
    }

    .search-box::placeholder {
        color: #d1d5db !important;
        /* Lighter gray for better readability */
    }
}