/* Estilos generales del sidebar */
.sb-sidebar {
    width: 280px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #2a3d55; /* Azul más claro */
    color: white;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título */
.sb-sidebar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Separador naranja */
.sb-sidebar hr {
    border-top: 2px solid #ff7b00;
    opacity: 1;
}

/* Links del menú */
.sb-sidebar .nav-link {
    color: white;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 8px; /* Para el efecto hover */
    transition: all 0.3s ease;
}

/* Hover: negrita + recuadro redondeado + color naranja */
.sb-sidebar .nav-link:hover {
    font-weight: bold;
    color: #ff7b00;
    background-color: rgba(255, 123, 0, 0.2); /* Naranja muy tenue */
}

/* Badge de notificaciones */
.sb-sidebar .badge {
    background-color: #ff7b00;
}

/* Dropdown usuario */
.sb-sidebar .dropdown-toggle {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.sb-sidebar .dropdown-menu {
    background-color: #2a3d55;
    border: 1px solid #ff7b00;
    border-radius: 8px;
}

.sb-sidebar .dropdown-menu .dropdown-item {
    color: white;
}

.sb-sidebar .dropdown-menu .dropdown-item:hover {
    background-color: #ff7b00;
    color: white;
    border-radius: 5px;
}
