/* search-card-blue.css — Styles carte de recherche */
.search-card {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid #3b82f6;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(59,130,246,0.25), 0 8px 25px rgba(30,64,175,0.15);
    backdrop-filter: blur(20px);
    position: relative;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.search-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    height: 6px;
    border-radius: 20px 20px 0 0;
}
.search-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(59,130,246,0.35);
    border-color: #2563eb;
}
.search-card h3 { color: #1e40af; font-weight: 700; }
.search-card .form-control,
.search-card .form-select {
    border: 2px solid #bfdbfe;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
