.agenda-container {
  width: 100%;
  text-align: center;
  background-color: white;
  padding-bottom: 20px;
}

.agenda-container p {
  margin: 0;
}

/* Main Title */
.agenda-title {
  font-size: 3rem;
  font-weight: 800;
  color: #81add6;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  padding-block: 20px;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-inline: 10%;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Day Card Container */
.day-card {
  min-width: 100%;
  background: linear-gradient(180deg, #81add6 0%, #4285f4 100%);
  padding: 24px 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Day Header Title */
.day-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 6px 0;
  text-align: center;
}

/* Items List Container */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Agenda Item Row */
.agenda-item {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  min-height: 64px;
  align-items: stretch;
}

/* Alternate Background for 2nd row style (matching preview) */
.agenda-item:nth-child(even) {
  background-color: #dbeafe;
}

/* Time Badge */
.time-badge {
  background-color: #203354;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  text-align: center;
  flex-shrink: 0;
}

/* Content Area */
.agenda-content {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  flex-grow: 1;
}

.item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2a3568;
  line-height: 1.3;
}

.item-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 2px;
  line-height: 1.35;
}

/* Carousel Navigation Controls */
.nav-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.swipe-pill {
  background-color: #203354;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.2s,
    transform 0.1s;
  border: none;
}

.swipe-pill:hover {
  background-color: #15233b;
}

.swipe-pill:active {
  transform: scale(0.96);
}

.swipe-arrow {
  font-size: 0.8rem;
  letter-spacing: -2px;
}

/* Dots Indicators */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

.dot.active {
  background-color: #3b82f6;
  width: 24px;
  border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .carousel-wrapper {
    margin-inline: 20px;
  }

  .agenda-title {
    font-size: 1.75rem;
  }

  .day-card {
    padding: 16px;
  }

  .agenda-item {
    flex-direction: column;
  }

  .time-badge {
    width: 100%;
    padding: 6px;
    font-size: 0.85rem;
  }

  .agenda-content {
    padding: 10px 14px;
  }

  .item-title {
    font-size: 0.95rem;
  }

  .item-desc {
    font-size: 0.85rem;
  }
}
