/* Basic layout for the event detail page */
.organizer__profile {
  max-width: 800px; /* Or your preferred max-width */
  margin: 2rem auto; /* Centering content and adding some margin */
  padding: 1rem;
  background-color: #fff; /* Assuming a white background for content area */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

/* Organizer bio styling */
#organizer-bio {
  margin-top: 1.5rem; /* Add some space above the bio section */
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f9f9f9; /* Light grey background for this section */
  border-radius: 4px;
}

#organizer-bio h2 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5em;
}

#organizer-bio p,
#organizer-bio ul {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5rem;
}

#organizer-bio ul {
  list-style-position: inside; /* Ensure list bullets are inside the padding */
  padding-left: 0; /* Reset default padding */
}
