/**
 * Famous Quotes Search Styles
 */

.search-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.search-button i {
    margin: 0;
}

/* Swal2 Search Modal Customization */
.search-modal .swal2-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

.search-modal .swal2-html-container {
    padding: 0 1rem;
}

.search-modal .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.search-modal .swal2-close {
    font-size: 2rem;
    color: #999;
}

.search-modal .swal2-close:hover {
    color: #667eea;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .search-button {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .search-modal {
        width: 90% !important;
    }
}

@media (max-width: 576px) {
    .search-button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
