#cjf-filtros-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.filter-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.filter-field select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.cjf-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cjf-btn-submit {
    background: #0073aa;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cjf-btn-submit:hover {
    background: #005177;
}

.cjf-btn-reset {
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}