/**
 * Query Filters - Styles
 */

.query-filters-block {
    margin-bottom: 2rem;
}

.query-filters-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.query-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 1 auto;
}

.query-filter-select {
    padding: 12px 20px;
    background-color: #eff1e3;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 250px;
    max-width: 250px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    /* Truncate long text with ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.query-filter-select:hover {
    background-color: #e5e7d9;
}

.query-filter-select:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* Options du select avec ellipsis */
.query-filter-select option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Loading state for posts */
.wp-block-post-template {
    transition: opacity 0.3s ease;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .query-filter-select, .query-filter-wrapper, .query-filters-block {
        width: 100%;
        max-width: 100%;
    }
}
