/* ========================= */
/* BOTÕES */
/* ========================= */

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: .2s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-success {
    background: var(--secondary);
    border: none;
    color: white;
}

.btn-warning {
    background: var(--warning);
    border: none;
    color: white;
}

/* ========================= */
/* TABELAS */
/* ========================= */

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table thead {
    background: var(--primary);
    color: white;
}

.table th,
.table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.table tbody tr:hover {
    background: rgba(21,101,192,.05);
}

/* ========================= */
/* INPUTS */
/* ========================= */

input,
select,
textarea {
    width: 100%;
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    transition: .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,.15);
}