/* Container bar */
.kunstwerken-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* left group left, button right */
    margin-bottom: 30px;
    padding: 5px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.0);
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Left group for dropdowns */
.kunstwerken-filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Reset Filters button */
.kunstwerken-filter-bar button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #4CAF50;
    color: #fff;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kunstwerken-filter-bar button:hover {
    background-color: #45a049;
    border-color: #45a049;
}

/* Labels and selects */
.kunstwerken-filter-bar label {
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
    color: #333;
}

.kunstwerken-filter-bar select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    min-width: 150px;
    transition: all 0.2s ease;
}

.kunstwerken-filter-bar select:hover,
.kunstwerken-filter-bar select:focus {
    border-color: #aaa;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    outline: none;
}

/* Responsive: stack on mobile */
@media screen and (max-width: 600px) {
    .kunstwerken-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .kunstwerken-filter-left {
        flex-direction: column;
        gap: 10px;
    }

    .kunstwerken-filter-bar button {
        width: 100%;
        margin-top: 10px;
    }

    .kunstwerken-filter-bar select {
        width: 100%;
    }
}
