/* Form Container */
.vote-filter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto 20px;
}

/* Labels */
.vote-filter-form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

/* Select Dropdowns & Button */
.vote-filter-form select,
.vote-filter-form button {
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}

/* Button Styling */
.vote-filter-form button {
    background: #d9534f;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    border: none;
}

.vote-filter-form button:hover {
    background: #b52b27;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vote-filter-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .vote-filter-form label {
        display: block;
        margin-bottom: 2px;
    }

    .vote-filter-form select,
    .vote-filter-form button {
        width: 100%;
        max-width: 300px;
    }
}
