/* Container Styling for Agenda Boxes */
.agenda-box {
  background: linear-gradient(135deg, #000094, #B900FF);
  color: white;
  border-radius: 12px;
  padding: 20px;
  min-height: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  position: relative;
  text-align: left;
  overflow: hidden;
}

.agenda-box:hover {
  transform: translateY(-5px);
}

/* Agenda Content Styling */
.agenda-date {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.agenda-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* Speaker Dropdown Styles */
.speaker-dropdown {
  margin-top: 15px;
}

.toggle-speaker {
  display: none;
}

.speaker-label {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: background 0.3s;
}

.speaker-label:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.speaker-info {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

/* Toggle speaker info when checkbox is checked */
.toggle-speaker:checked + .speaker-label + .speaker-info {
  display: block;
}

/* Responsive Columns for WPBakery */
@media (min-width: 1024px) {
  .wpb_column.agenda-col {
    width: 23% !important;
    margin-right: 1% !important;
  }
  .wpb_column.agenda-col:nth-child(4n) {
    margin-right: 0 !important;
  }
}

@media (max-width: 1023px) {
  .wpb_column.agenda-col {
    width: 48% !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .wpb_column.agenda-col {
    width: 100% !important;
  }
}