/* Sidebar icon style */
.sidebar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0;
  color: rgb(148 163 184);
  transition: color 0.2s ease;
}

.sidebar-icon:hover {
  color: white;
}

.sidebar-icon.active {
  color: rgb(34 211 238);
}

.sidebar-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

/* Glass cards - SIN ANIMACIONES HOVER */
.glass-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(30 41 59);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  /* QUITADO: transition, transform, animaciones */
}

.glass-card:hover {
  /* SOLO cambio de background, sin transform ni animaciones */
  background: rgba(15, 23, 42, 0.5);
  /* QUITADO: transform: translateY(-2px); */
  /* QUITADO: box-shadow animado */
}

.glass-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgb(226 232 240);
}

.glass-card p {
  color: rgb(148 163 184);
}
