.schedule-content a  {
  text-decoration: underline;
  color: #3366ff;
}
.caltech-accordion {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.schedule-day {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  display: flex;
  align-items: center; /* Vertically centers the text and the line */
  gap: 20px;           /* Space between the text and the image */
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  white-space: nowrap; /* Prevents the title from wrapping to a new line */
}
.schedule-day::after {
  content: "";
  flex-grow: 1;        /* Forces the image container to take up all remaining space */
  height: 40px;        /* Adjust this height to match your image's design */
  background-image: url('/wp-content/uploads/2026/01/hcc-schedule-title-bg.png');
  background-repeat: no-repeat;
  background-size: contain;   /* Ensures the full height of the image is visible */
  background-position: left center;
}

/* 1. Updated Grid to include an icon column (40px) */
.schedule-summary {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  cursor: pointer;
  list-style: none;
  align-items: center; /* Keeps everything vertically centered */
  background: #fff;
}

.schedule-summary::-webkit-details-marker {
  display: none;
}

.schedule-time {
  font-weight: 700;
  font-size: 24px;
      display: inline-block;
    width: 250px;
}
@media (max-width: 700px) {
  .schedule-time {
  font-size: 18px;
    width: 33%;
}
.conference-schedule-block .schedule-event-name {
  width: 40%;
}
}

.schedule-event-name {
  font-size: 18px;
  padding: 0 5px;
  display: inline-block;
  font-weight: 700;
  justify-self: start; /* Prevents background from stretching full width */
}
.conference-schedule-block .schedule-event-name {
    background: #000;
    color: #fff
}

.schedule-summary::before {
  content: '+';
  background-color: #D9BC6E; /* Gold for non-open items */
  color: #fff;
  width: 66px;
  height: 66px;
  display: block;
  position: relative;
  justify-self: start;
  font-family: Helvetica Neue, sans-serif;
  font-size: 66px;
      line-height: 56px;
    text-align: center;
  font-weight: 400;
  grid-column: 1;      /* Ensures it stays in the first grid column */
  order: -1;
  transition: all 0.2s ease;
}
details[open] .schedule-summary::before {
  content: '–';
  line-height: 55px;
  background-color:#76777B ; /* Becomes gray when open */
}
.schedule-summary:hover::before {
  background-color: #76777B;
  transform: scale(1.05); /* Slight pop effect on hover */
}
.schedule-indent {
    margin-left: 66px;
    background: #EDEDED;
    padding: 1.5rem 2rem;
}
.schedule-content h4 {
    color: #FF6C0C;
    background: #fff;
    padding: 10px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.schedule-content p:last-child {
  margin-bottom: 0;
}

.schedule-search-container {
  max-width: 100%;
}

#schedule-search-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

#schedule-search-input:focus {
  border-color: #D9BC6E;
}

/* Ensure the rows transition smoothly when filtered */
.schedule-row {
  transition: opacity 0.2s ease;
  margin-bottom: 10px;
}

.conference-schedule-block .schedule-block {
  padding: 70px 0 0 0;
}
.faq-filter-container .schedule-block {
  position: relative;
  padding: 50px 10px; /* spacing for row content */
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 900px) {
.faq-filter-container .schedule-block {
  width: 100vw; /* full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* offset to fill the viewport */
  margin-right: -50vw;
}
}
/* Even/Odd background colors */
.faq-filter-container .schedule-block.odd  {
  background-color: #D9D9D9;
}

/* Inner content wrapper, centered and max width */
.schedule-row .schedule-summary,
.schedule-row .schedule-content, 
.schedule-day {
  max-width: 900px;
  margin: 0 auto;
}

/* Ensure the category titles (formerly day titles) look good */
.faq-block .schedule-day {
  color: #76777B;
  border-bottom: 2px solid #D9BC6E;
  display: inline-block;
  padding-bottom: 5px;
}

@media (max-width: 600px) {
  .schedule-day {
    gap: 10px;
  }
  .schedule-time {
    font-size: 14px;
  }
  .schedule-event-name {
    font-size: 14px;
        width: 80%;
  }
  .schedule-day::after {
    height: 20px; /* Smaller image on mobile */
  }
  .caltech-accordion {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
}