.calendario {
  background: #0f0f1a;
  border: 1px solid #1e1e2e;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.cal-titulo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.cal-nav {
  font-size: 16px;
  color: #7070a0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all .2s;
}

.cal-nav:hover { color: #a78bfa; background: rgba(124,58,237,0.1); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-nombre-dia {
  font-size: 9px;
  color: #7070a0;
  padding: 3px 0;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cal-dia {
  font-size: 10px;
  color: #9090b0;
  padding: 5px 2px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all .15s;
}

.cal-dia:hover { background: #1a1a2e; color: #e0e0e0; }

.cal-dia.hoy {
  background: #7c3aed;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(124,58,237,0.4);
}

.cal-dia.con-tarea::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #f59e0b;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.cal-dia.otro-mes { color: #3a3a5a; }

.proximas {
  background: #0f0f1a;
  border: 1px solid #1e1e2e;
  border-radius: 14px;
  padding: 1rem;
}

.proximas-titulo {
  font-size: 10px;
  font-weight: 600;
  color: #9090b0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.proxima-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a2e;
}

.proxima-punto {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.proxima-punto.alta  { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); }
.proxima-punto.media { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.proxima-punto.baja  { background: #a78bfa; box-shadow: 0 0 6px rgba(167,139,250,0.5); }

.proxima-texto { flex: 1; font-size: 11px; color: #b8b8d0; }
.proxima-fecha { font-size: 10px; color: #8888a8; white-space: nowrap; }