/* Fondo general */
body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Estilos del sidebar */
.sidebar {
    background-color: #1f2d3d; /* Azul oscuro personalizado */
    color: #ffffff;
    height: 100vh;
    border-right: 2px solid #343a40;
}

.sidebar h4 {
    color: #ffffff;
    font-weight: bold;
}

.sidebar .nav-link {
    color: #dcdcdc;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: #3c4b64;
    color: #fff;
}

/* Estilos del área principal */
.main-content {
    margin-left: 250px;
    padding: 40px 30px;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

/* Botón de cerrar sesión */
.sidebar .btn {
    font-weight: bold;
    margin-top: 30px;
}

/* Títulos */
h3 {
    color: #333333;
}

p.text-muted {
    font-size: 14px;
}
