.swiper-container {
    width: 100%;
height: 100%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
}

/* Day pill calendar (matches psemanal.php fechapill style) */
.day-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.day-pill {
    cursor: pointer;
    text-align: center;
    flex: 1;
    max-width: 64px;
}

.day-pill .card {
    width: 100%;
    text-align: center;
    transition: background-color 0.2s;
}

.day-pill:hover .card {
    background-color: rgba(var(--bs-primary-rgb), .10) !important;
}

.day-pill.active .card {
    background-color: rgba(var(--bs-primary-rgb), .20) !important;
    color: var(--bs-primary);
}

.day-content {
    width: 100%;
}

.swiper-slide {
    transition: .2s all;
    opacity: 0.25;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

#actividadesList {
    list-style-type: none;
    padding: 0;
  }

  #actividadesList li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
  }

  #actividadesList img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  #configurador {
    display: none;
  }

  #configurador img {
    width: 100px;
    height: 100px;
  }

  #configurador button {
    margin: 5px;
  }

  #volverBtn {
    margin-top: 10px;
  }