.scrollable-container {
    max-height: 300px; /* Set the desired maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
    border: 1px solid #ddd; /* Optional: Add a border for visibility */
    border-radius: 5px; /* Optional: Add rounded corners */
    background-color: #f9f9f9; /* Optional: Add background color */
 }


.card-custom {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.content-custom {
  flex: 3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.columns {
  display: flex;
  justify-content: space-between;
  gap: 16px; /* Space between columns */
}

.column {
  flex: 1; /* Equal column width */
}



.color-bar {
  flex: 1; /* 1/4 of the card */
}

/* Color-bar classes */
.color-bar-white {
  background-color: #e0dede;
}

.color-bar-yellow {
  background-color: #ffd200;
}

.color-bar-red {
  background-color: #ff4e50;
}

.color-bar-blue {
  background-color: #5b86e5;
}

.color-bar-green {
  background-color: #56ab2f;
}

   
.schedule {
  padding: 1rem;
}

.cards {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.day-title {
  font-size: 1.5rem;
  color: #004085;
  margin-bottom: 0.5rem;
  text-align: center;
}

.session-title {
  font-size: 1.2rem;
  color: #0056b3;
  margin-top: 1rem;
}

.session-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.session-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.session-list li strong {
  color: #0056b3;
}

@media screen and (max-width: 768px) {
  .cards {
      padding: 0.8rem;
  }

  .day-title {
      font-size: 1.25rem;
  }

  .session-title {
      font-size: 1rem;
  }

  .session-list li {
      font-size: 0.9rem;
  }
}


.schedule-card {
width: 100%; /* Full width of the parent container */
  max-width: 100%; /* Ensure no horizontal overflow */
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.day-header {
  background-color: #003366;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.session {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.session:last-child {
  border-bottom: none;
}

.session-title {
  font-size: 16px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 14px;
  margin: 5px 0;
  line-height: 1.5;
}

ul li::before {
  content: "•";
  color: #003366;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .schedule-card {
    width: 90%;
    margin: 10px auto;
  }

  .day-header {
    font-size: 18px;
    padding: 10px;
  }

  .session-title {
    font-size: 14px;
  }

  ul li {
    font-size: 13px;
  }
}