/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Contenedor del mensaje de bienvenida */
.bienvenida-container {
    position: absolute;
    top: -15px;
    right: 30px; /* Ajusta según el diseño */
}

/* Texto del mensaje de bienvenida */
.bienvenido {
    font-size: 20px;
    font-weight: 300;
    color: #2c3e50; /* Azul oscuro elegante */
    letter-spacing: 0.5px;
    margin-bottom: 0;
    text-align: right;
}

/* Nombre del usuario resaltado */
.bienvenido span {
    font-weight: bold;
    color: #722F37; /* Azul vibrante para destacar */
}





.login-container {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 210px; /* Ajusta según lo necesario */
    max-width: 100%;
    display: block;
    margin: 0 auto 15px;
}

/* Ajuste del logo en el sidebar */
.logo-sidebar {
    width: 180px; /* Ajusta según el tamaño del logo */
    display: block;
    margin: 0 auto 15px;
}

#wrapper {
    display: flex;
}

h2.text-center {
    color: black !important;
}

#sidebar-wrapper {
    min-width: 250px;
    max-width: 250px;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(161,32,32,1) 0%);
    height: 100vh;
    position: fixed;
    transition: background 0.3s ease-in-out;
	color: white;

}

#sidebar-wrapper .list-group-item {
    background-color: transparent;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

#sidebar-wrapper .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


#page-content-wrapper {
    margin-left: 250px;
    width: 100%;
    padding: 20px;
}

.negrita {
    font-weight: bold;
}
.list-group-item {
    background: transparent;
    color: white;
    border: none;
}

.list-group-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffcc00; /* Amarillo dorado para resaltar */
}

.list-group-item-action.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Tarjetas del Dashboard */
.card {
    border-radius: 15px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card2:hover {
    transform: none;
}

.card-title {
    font-size: 1.2rem;
}

.card-text {
    font-size: 1rem;
}



#toggle-dark-mode {
    transition: background 0.3s, color 0.3s;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.8s ease-in-out;
}
