.agenda-body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 20px;
}

.agenda-title {
  text-align: center;
  color: #99ccee;
}

.agenda-table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.agenda-table th,
.agenda-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.agenda-table th {
  background-color: #99ccee;
  color: #fff;
  text-align: left;
}

.agenda-table tr:nth-child(even) td {
  background-color: #cceeff;
}

.agenda-table tr:nth-child(odd) td {
  background-color: #fff;
}

.agenda-day-title {
  background-color: #99ccee;
  color: #fff;
  font-size: 1.3em;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  width: 80%;
  margin: 40px auto 0;
}
.agenda-table th:nth-child(1),
.agenda-table td:nth-child(1) {
  width: 30%;
}

.agenda-table th:nth-child(2),
.agenda-table td:nth-child(2) {
  width: 70%;
}

.buttons {
      margin: 20px 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    /* 按钮基础样式：尺寸变小、立体感、白色文字 */
    .light-blue-button,
    .heavy-blue-button {
      padding: 8px 16px;         /* 更小的尺寸 */
      font-size: 14px;           /* 较小的字体 */
      border: none;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.2s ease;
      color: #ffffff;            /* 按钮内文字全部为白色 */
      box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    }
    
    /* 轻蓝色按钮样式 */
    .light-blue-button {
      background: linear-gradient(45deg, #ADD8E6, #87CEFA);
    }
    
    /* 深蓝色按钮样式 */
    .heavy-blue-button {
      background: linear-gradient(45deg, #4169E1, #1E90FF);
    }
    
    /* 鼠标悬停效果，按钮略微上浮 */
    .light-blue-button:hover,
    .heavy-blue-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
    }
    
    /* 按钮点击效果，下沉反馈 */
    .light-blue-button:active,
    .heavy-blue-button:active {
      transform: translateY(2px);
      box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    }
    .breadcrumbs a {
    color: blue;
}
/* 天空蓝按钮 */
.sky-blue-button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #87CEEB, #00BFFF);
}
.sky-blue-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}
.sky-blue-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* 海军蓝按钮 */
.navy-blue-button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #001F3F, #003366);
}
.navy-blue-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}
.navy-blue-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

  body {
      font-family: Arial, sans-serif;
      padding: 20px;
      background-color: #f6f7f9;
    }
    
    h1 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2em;
      text-transform: uppercase;
    }

    /* Container for all speakers */
    .speakers-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    /* Speaker card styling */
    .speaker {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
      padding: 20px;
      width: 200px;
      text-align: center;
    }

    .speaker img {
      /* Make images circular */
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .speaker h2 {
      font-size: 1.1em;
      margin-bottom: 10px;
      color: #333;
    }

    .speaker p {
      font-size: 0.9em;
      line-height: 1.4;
      color: #555;
    }

    /* Footer note or additional info */
    .more-details {
      text-align: center;
      margin-top: 30px;
      font-size: 0.95em;
      color: #444;
    }

    .more-details a {
      color: #0066cc;
      text-decoration: none;
    }

    .more-details a:hover {
      text-decoration: underline;
    } 

     ul.plenary-list {
      list-style: disc inside;
      margin: 0 0 2rem;
      font-size: 1rem;
      color: #333;
    }
     
  /* Make the entire line—including the “Keynote Speaker:” and the link—light blue */
ul.plenary-list li strong,
ul.plenary-list li a {
  color: #0033A0 !important;  /* UConn PMS 286 blue */
}
  ul.plenary-list li a {
    color: inherit;
    text-decoration: none;
  }
  ul.plenary-list li a:hover {
    text-decoration: underline;
  }

    /* Flex container for each talk */
    .plenary-talk {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: #fff;
      padding: 1.2rem;
      margin-bottom: 2rem;
      border-radius: 6px;
      box-shadow: 0 2px 6px  #000;;
    }

    /* Bigger, consistently sized image */
    .plenary-talk img {
      flex-shrink: 0;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
      border: 1px solid #000;
    }

    /* Text area */
    .plenary-details {
      flex-grow: 1;
    }
    .plenary-details h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-size: 1.3rem;
      color: #000;
    }
    .plenary-details p {
      margin: 0 0 1rem;
      line-height: 1.6;
      color: #555;
    }

    /* Stack vertically on narrow screens */
    @media (max-width: 600px) {
      .plenary-talk {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .plenary-talk img {
        width: 180px;
        height: auto;
        margin-bottom: 1rem;
      }
      .plenary-details h3 { font-size: 1.2rem; }
    }
    /* UConn‐style blue for the Local Hotels heading */
#local-hotels h2 {
  color: #0033A0 !important;
}
/* 1) Make images scale on mobile */
img {
  max-width: 100%;
  height: auto;
}
/* 天空蓝按钮 */
.sky-blue-button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #87CEEB, #00BFFF);
}
.sky-blue-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}
.sky-blue-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* 海军蓝按钮 */
.navy-blue-button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #001F3F, #003366);
}
.navy-blue-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}
.navy-blue-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
/* 浅暖色按钮（桃粉渐变） */
.warm-peach-button {
  display: block;
  margin: 24px auto 0;
  padding: 10px 24px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
  background: linear-gradient(135deg, #FFD1B3 0%, #FF7F50 100%);
  box-shadow:
    /* soft white outer “glow” */
    0 8px 16px rgba(255,255,255,0.4),
    /* subtle dark depth underneath */
    0 4px 8px rgba(0,0,0,0.1),
    /* inner highlight */
    inset 0 2px 0 rgba(255,255,255,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.warm-peach-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 24px rgba(255,255,255,0.5),
    0 6px 12px rgba(0,0,0,0.1),
    inset 0 2px 0 rgba(255,255,255,0.7);
}
.warm-peach-button:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 8px rgba(255,255,255,0.3),
    0 2px 4px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.flyer {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}

.flyer img {
  max-width: 600px;  /* constrain width */
  width: 100%;
  height: auto;
  border-radius: 4px; /* optional rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

@media only screen and (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .wa-module { padding: 0.5rem; }
}
