/* ==========================================================================
   Bootstrap Overrides - Ajustes globais do Bootstrap 5
   ========================================================================== */

:root {
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.375rem;
    --bs-border-radius-lg: 0.625rem;
    --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    --bs-box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* Botões */
.btn {
    font-weight: 500;
    border-radius: var(--bs-border-radius);
}

.btn-sm {
    border-radius: var(--bs-border-radius-sm);
}

/* Cards */
.card {
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow-sm);
}

.card-header {
    border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
}

/* Forms */
.form-control,
.form-select {
    border-radius: var(--bs-border-radius-sm);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Modais */
.modal-content {
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--bs-box-shadow);
}

.modal-header {
    border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0 0;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Tables */
.table {
    --bs-table-bg: transparent;
}

.table > thead {
    border-bottom: 2px solid var(--app-border);
}

/* Dropdowns */
.dropdown-menu {
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow);
}
