/* ======================================================
   SENDEPLAN VORSCHAU – IDENTISCH ZUR WELCOME-BOX
====================================================== */

#box3 {
  align-items: center;
  justify-content: flex-start;
  text-align: center;

  padding: 18px 18px 20px;
  gap: 12px;
}

/* ======================================================
   NEON RAHMEN – EXAKT WIE WELCOME-BOX
====================================================== */

#box3::before,
#box3::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

#box3::before {
  border: 2px solid transparent;
  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--accent),
      var(--primary-light)
    ) border-box;

  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: neo-border 6s linear infinite;
}

#box3::after {
  inset: 6px;
  border-radius: calc(var(--box-radius) - 6px);
  background: radial-gradient(
    circle at top,
    rgba(0,255,136,.18),
    transparent 70%
  );
  opacity: .6;
}

/* ======================================================
   TITLE
====================================================== */

#box3 h2 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--primary-light);
  text-shadow: 0 0 6px rgba(201,241,255,.5);
}

/* ======================================================
   SCROLLBEREICH (NUR INHALT!)
====================================================== */

#box3 .schedule-list {
  width: 100%;
  max-height: 380px;        /* exakt Vorschau-Höhe */
  overflow-y: auto;
  padding-right: 6px;
}

/* Scrollbar */
#box3 .schedule-list::-webkit-scrollbar {
  width: 6px;
}

#box3 .schedule-list::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--accent),
    var(--primary)
  );
  border-radius: 6px;
}

#box3 .schedule-list::-webkit-scrollbar-track {
  background: transparent;
}

/* ======================================================
   LISTE
====================================================== */

#box3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#box3 li {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: .9rem;
  padding: 8px 10px;
  margin-bottom: 6px;

  border-radius: 8px;
  background: rgba(255,77,77,.12);
  box-shadow: inset 0 0 8px rgba(0,255,136,.12);

  transition: background var(--transition);
}

#box3 li:hover {
  background: rgba(255,77,77,.22);
}

/* ======================================================
   AVATAR
====================================================== */

#box3 .schedule-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary);
  object-fit: cover;
}

/* ======================================================
   GENRE BILD
====================================================== */

#box3 .genre-bild {
  width: 80px;
  height: 32px;
  border-radius: 6px;
  margin-left: auto;
  object-fit: cover;
}

/* ======================================================
   LINK UNTEN
====================================================== */

#box3 .schedule-link {
  margin-top: auto;
  font-size: .9rem;
  color: var(--primary-light);
  text-decoration: underline;
}

#box3 .schedule-link:hover {
  color: var(--accent);
}
