/* Sidebar Filter Styling */
.sidebar-filter {
    background-color: #1b3a57;
    padding: 40px 20px !important;
    border-radius: 8px;
    color: #ffcb05;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-filter label {
    font-size: 16px;
    font-weight: bold;
    color: #ffcb05;
    display: block;
    margin-bottom: 10px;
}

.sidebar-filter select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ffcb05;
    background-color: #f2f2f2;  /* Light Gray */
    color: #1b3a57;
    font-size: 14px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sidebar-filter select:focus {
    border-color: #ffcb05;
    background-color: #ffffff;  /* White background on focus */
}

button#filter-submit-attributes, button#filter-submit-brand,
#go-back-button {
    background-color: #ffcb05;
    color: #1b3a57;
    border: none;
    padding: 7px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

button#filter-submit-attributes:hover, button#filter-submit-brand:hover
#go-back-button:hover {
    background-color: #f1b605;
}


.sidebar-filter form {
    display: flex;
    flex-direction: column;
}

/* Optional: Style the form container to use white for a more minimal look */
.sidebar-filter {
    background-color: #1b3a57;
    padding: 40px;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
}

.sidebar-filter label {
    color: #fff;  /* Dark blue text for labels */
}

.sidebar-filter select {
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
}
