/* ==========================================
   OPAC SEARCH PAGE STYLES
   Specific styles for the search catalog
   ========================================== */


.form-control-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.form-control-glass:focus {
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

/* Overrides for search results */
.book-cover {
    height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.05);
}