body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.dashboard-container {
  height: 100vh;
}

/* Topbar (solo móvil) */
.topbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #fff;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333;
}
.sidebar .brand img {
  max-width: 120px;
}
.menu {
  display: flex;
  flex-direction: column;
}
.menu-item {
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  margin: 6px 10px;
  transition: all 0.3s;
}
.menu-item:hover,
.menu-item.active {
  background: #E67E22;
  color: #fff;
}

/* Usuario */
.user-box h6 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* Main content */
.main-content h3 {
  font-weight: 600;
  color: #154360;
}

/* Tarjetas estadísticas */
.card-stat {
  border-radius: 18px;
  padding: 25px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: #333;
}
.card-stat h6 {
  font-size: 0.85rem;
  opacity: 0.9;
}
.card-stat h3 {
  font-weight: 600;
  margin-top: 10px;
}

/* Gradientes */
.gradient-red { background: linear-gradient(135deg, #C0392B, #922B21); }
.gradient-orange { background: linear-gradient(135deg, #E67E22, #CA6F1E); }
.gradient-yellow { background: linear-gradient(135deg, #F39C12, #D68910); }
.gradient-blue { background: linear-gradient(135deg, #154360, #2E86C1); }

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    border-radius: 0;
    width: 100%;
}
}


/* Fondo de login */
.login-bg {
    background: #9d2449;
  font-family: 'Poppins', sans-serif;
}

/* Card del login */
.login-card {
  border-radius: 15px;
  background: #fff;
}

/* Responsivo */
@media (max-width: 576px) {
  .login-card {
    margin: 0 15px;
    padding: 20px;
}
.login-card h3 {
    font-size: 1.4rem;
}
}
