.team-members {
    margin-top: 2em;
    text-align: center;
}

.team-members h2 {
    color: #facc15; /* Highlight color */
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5em;
}

.team-members p {
    color: #e5e7eb; /* Light text color for dark theme */
    font-size: 1rem;
    margin-bottom: 1em;
}

.team-members ul {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}
.team-list {
    padding-left: 0;
    list-style-type: none;
}

.team-item {
    margin-bottom: 1.5em;
}

.team-link {
    cursor: pointer;
    text-decoration: none;
    color: #e5e7eb; /* Light text color */
    font-size: 1rem;
    display: block;
    padding: 0.8em;
    background-color: #374151; /* Dark background */
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.team-link:hover {
    background-color: #4b5563; /* Highlight color on hover */
    color: #111827; /* Darker text on hover */
    transform: translateY(-2px);
}

.team-name {
    font-weight: bold;
    font-size: 1.2rem;
}

.team-role {
    color: #94a3b8; /* Lighter gray text */
}


hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #666, transparent);
    margin: 20px 0;
}

.sponsors-list {
    padding-left: 0;
    list-style-type: none;
    text-align: left;
    font-size: 1.1rem;
    margin-top: 1em;
    color: #e5e7eb; /* Light text color for dark theme */
}

.sponsors-list li {
    margin-bottom: 1rem;
}
.support-type {
    font-size: 0.9rem;
    color: #6b7280;
    margin-left: 10px;
}
.notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
    font-size: 1rem;
    text-align: center;
}

.notice p {
    margin: 0;
    font-weight: bold;
}
.comment-text {
  font-style: italic;
  color: #9ca3af;
  margin-left: 0.5em;
  font-weight: normal;
  cursor: default;
  user-select: none;
}