/* Search Module Styling */

/* Search Section */
.search-section {
    padding: 0;
    background: transparent;
    border: none;
    margin-top: 0;
}

/* Search Input Focus Animation */
.search-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Search Button Loading State */
.btn-search.loading {
    background-color: rgba(59, 130, 246, 0.1);
    color: rgba(59, 130, 246, 0.6);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.2);
}

.btn-search.loading:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: rgba(59, 130, 246, 0.6);
    transform: none;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.2);
}

/* Search Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.searching {
    animation: pulse 1.5s infinite ease-in-out;
}
