.filter-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 16px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.filter-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.filter-header a {
    font-size: 14px;
    color: #1E73BE;
    text-decoration: none;
    cursor: pointer;
}

.filter-header a:hover {
    text-decoration: underline;
}

.filter-box .form-group {
    margin-bottom: 12px;
}

.filter-box label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

.filter-box select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
}

.filter-box select:focus-visible{
    outline-color: #ccc;
    outline-width: 0px;
}

.filter-box .btn {
    width: 100%;
    background: #1E73BE;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
}

.btn:hover {
    background: #0056b3;
}