/**
 * Näköislehti Search and Filter Styling
 */

/* Search and Filter Container */
.lehti-search-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lehti-search-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* Search Input */
#lehti-haku {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#lehti-haku:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Series Select */
#lehti-sarja {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#lehti-sarja:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Results Info */
.lehti-results-info {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

/* Pagination */
.lehti-pagination-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 8px 12px;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover {
    background: #f0f0f0;
    border-color: #007cba;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lehti-search-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    #lehti-haku,
    #lehti-sarja {
        width: 100%;
        min-width: auto;
    }
    
    .lehti-pagination-container {
        gap: 3px;
    }
    
    .pagination-btn {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 35px;
    }
}

/* Loading State */
.lehti-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* No Results Message */
.lehti-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.lehti-no-results::before {
    content: "🔍";
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
}

/* Richie Editions Integration */
.richie-editions-issue {
    transition: opacity 0.3s ease;
}

.richie-editions-issue[style*="display: none"] {
    opacity: 0;
}

/* Smooth animations */
.richie-editions-issue {
    transition: all 0.3s ease;
}

/* Search highlight (if you want to add highlighting) */
.richie-editions-issue-title.highlighted {
    background: rgba(0, 124, 186, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}
