/* ===== BOTÕES ===== */

/* Estilos base para todos os botões */
button,
.btn-primary,
.btn-submit,
.btn-dashboard {
    display: inline-block;
    padding: 12px 20px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    margin: 8px 8px 8px 8px;
}

/* Hover para todos os botões */
button:hover,
.btn-primary:hover,
.btn-submit:hover,
.btn-dashboard:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Foco (acessibilidade) */
button:focus,
.btn-primary:focus,
.btn-submit:focus,
.btn-dashboard:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Desabilitado */
button:disabled,
.btn-primary:disabled,
.btn-submit:disabled,
.btn-dashboard:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Dentro de form-actions */
.form-actions button {
    margin-bottom: 0;
}
/* Container dos filtros */
.visit-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* Botões base */
.filter-btn {
    padding: 8px 16px;
    border: 1px solid #007BFF;
    background-color: #fff;
    color: #007BFF;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Hover */
.filter-btn:hover {
    background-color: #007BFF;
    color: #fff;
}

/* Botão ativo (quando clicado) */
.filter-btn.active {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Classes individuais podem ser customizadas */
.filter-this-week { }
.filter-next-14-days { }
.filter-next-30-days { }
.filter-pending { }
.filter-completed { }
.filter-missed { }
.filter-all { }