.container, .container-md, .container-lg, .container-xl {
    max-width: 1800px; /* or whatever width you prefer */
    margin-left: auto;
    margin-right: auto;
  }

.page-heading h1 {
  font-size: 2.75rem !important; /* Smaller size */
}


/* Schedule styling */
.schedule-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.schedule-time {
  width: 180px;
  font-weight: bold;
  color: #555;
  flex-shrink: 0;
}

.schedule-content {
  flex-grow: 1;
}

.schedule-title {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.schedule-type {
  color: #666;
  font-style: italic;
}

.schedule-link {
  margin-top: 5px;
}

@media (max-width: 768px) {
  .schedule-item {
    flex-direction: column;
  }
  
  .schedule-time {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Speaker photos styling */
.speakers-table img {
  width: 200px !important;
  min-width: 200px;
  max-width: 200px;
  height: auto;
}

/* Responsive behavior for very small screens */
@media (max-width: 300px) {
  .speakers-table img {
    width: 180px !important;
    min-width: 180px;
    max-width: 180px;
  }
}

/* Organizers grid layout */
.list-of-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  justify-items: center;
}

.person {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #e0e0e0;
  transition: transform 0.3s ease;
  display: block;
}

.person img:hover {
  transform: scale(1.05);
}

.person a {
  font-size: 1.1em;
  font-weight: 500;
  color: #008AFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.person a:hover {
  color: #0085A1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .list-of-people {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .person img {
    width: 120px;
    height: 120px;
  }
}

