/* DASHBOARD STYLES */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

a { text-decoration: none; }
a:hover { text-decoration: underline; }

body { background-color: #f8f9fa; }

/* NAVBAR CUSTOMIZADA */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0d6efd !important; /* Azul Bootstrap */
}

/* Dropdown */
.dropdown-menu {
    border-radius: 0.5rem;
    margin-top: 10px !important;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.dropdown-item:active {
    background-color: #0d6efd;
}

/* Tabela mais clean */
.table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}
