.navbar {
    background: linear-gradient(135deg, #007bff, #0062cc);
    padding: 0.5rem 1rem;
}

.navbar-brand {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-link {
    border-radius: 0.5rem;
    transition: all 0.2s;
    margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link:focus {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.dropdown-menu {
    /* background-color: white; */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.dropdown-item {
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Circulo Menu Funcionarios */
.rounded-circle {
    object-fit: cover;
    width: 40px;
    height: 40px;
}