body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff1f7;
  text-align: center;
  padding: 20px;
  margin: 0;
  color: #444;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-13/cur1158.cur'), auto;
}

h1 {
  color: #d14c84;
  margin-bottom: 10px;
  font-size: 22px;
}

.contador-creditos {
  font-size: 14px;
  font-weight: bold;
  color: #c94082;
  background-color: #ffe0ec;
  border: 1px solid #f3a3c6;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.scroll-hint {
  font-size: 14px;
  color: #b44c76;
  margin-bottom: 15px;
  font-style: italic;
}

.tabla-ciclos {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
  scroll-behavior: smooth;
}

.tabla-ciclos::-webkit-scrollbar {
  height: 6px;
}

.tabla-ciclos::-webkit-scrollbar-thumb {
  background-color: #f3a3c6;
  border-radius: 10px;
}

.columna-ciclo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ciclo {
  color: #c94082;
  font-size: 15px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #f3a3c6;
  padding-bottom: 2px;
}

.curso {
  width: 140px;
  min-height: 60px;
  padding: 8px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(145deg, #ffe6f0, #f8cddd);
  transition: all 0.25s ease;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.08),
    -4px -4px 8px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 12px;
}

.curso:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.12),
    -6px -6px 12px rgba(255, 255, 255, 0.8);
}

.nombre-curso {
  font-weight: bold;
  font-size: 12px;
}

.creditos {
  font-size: 10px;
  color: #666;
  margin-top: 3px;
}

.curso.aprobado {
  background: linear-gradient(145deg, #f28cb1, #d66794);
  color: white;
  border: none;
  box-shadow: 
    4px 4px 10px rgba(214, 103, 148, 0.4),
    -4px -4px 8px rgba(255, 255, 255, 0.3);
}

.curso.bloqueado {
  background: #f5f5f5;
  color: #bbb;
  border: none;
  cursor: not-allowed;
  opacity: 0.85;

  box-shadow: 
    inset 2px 2px 4px rgba(0, 0, 0, 0.08),
    inset -2px -2px 4px rgba(255, 255, 255, 0.8),
    2px 2px 5px rgba(0, 0, 0, 0.05);
}

body::after {
  content: "✨ 🌸 💗 ✨ 🌸";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  font-size: 40px;
  pointer-events: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 0;
}
