/* --- TUS ESTILOS ORIGINALES DE LOGIN --- */
body {
    background: linear-gradient(135deg, #ff007f 0%, #007bff 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}
.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
}
.logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}
.form-control:focus {
    border-color: #ff007f;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 127, 0.25);
}
.btn-primary {
    background-color: #007bff;
    border: none;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* --- ESTILOS DEL DASHBOARD (Aplicados condicionalmente para no afectar el login) --- */
body.dashboard-body {
    background: #f4f6f9 !important;
    height: auto !important;
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
}

#sidebar {
    min-height: 100vh;
    background: #1e1e2d;
    color: #c2c7d0;
    box-shadow: 3px 0 10px rgba(0,0,0,0.1);
}

#sidebar h4 {
    color: #fff;
    letter-spacing: 1px;
}

#sidebar .nav-link {
    color: #c2c7d0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

#sidebar .nav-link:hover, 
#sidebar .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ff007f 0%, #007bff 100%);
}

.main-header {
    background: #fff;
    padding: 15px 30px;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
/* --- ESTILOS DEL SIDEBAR RETRÁCTIL DE ICONOS --- */
#sidebar {
    min-height: 100vh;
    background: #0c2a60;
    color: #c2c7d0;
    box-shadow: 3px 0 10px rgba(0,0,0,0.1);
    width: 260px;
    transition: width 0.3s ease-in-out;
    overflow-x: hidden;
}

/* Estado cuando el sidebar está contraído (modo solo iconos) */
#sidebar.sidebar-icon-only {
    width: 75px !important;
}

#sidebar.sidebar-icon-only .nav-link span,
#sidebar.sidebar-icon-only .sidebar-title,
#sidebar.sidebar-icon-only hr,
#sidebar.sidebar-icon-only .user-name-text {
    display: none !important;
}

#sidebar.sidebar-icon-only .nav-link {
    text-align: center;
    padding: 12px 0;
    justify-content: center !important;
}

#sidebar.sidebar-icon-only .nav-link i {
    font-size: 1.4rem;
    margin-right: 0 !important;
}

#sidebar.sidebar-icon-only .sidebar-header-container {
    justify-content: center !important;
}

.main-header {
    background: #fff;
    padding: 15px 30px;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
#sidebar.sidebar-icon-only .logout-btn-box span,
#sidebar.sidebar-icon-only .logout-btn-box hr {
    display: none !important;
}

#sidebar.sidebar-icon-only .logout-btn-box button {
    justify-content: center !important;
    padding: 10px 0 !important;
}

#sidebar.sidebar-icon-only .logout-btn-box button i {
    margin-right: 0 !important;
    font-size: 1.4rem;
}
.main-header h1 {
    color: #ff007f !important; /* Aquí cambias el color (ej. al rosado de la marca o el color que prefieras) */
    font-size: 3rem;          /* Aquí puedes ajustar el tamaño si lo deseas */
    font-weight: 700;           /* Grosor de la fuente */
}