.event-container {
  max-width: 85vw;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
  list-style: inside;
}

.event-banner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.event-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 0.5rem;
}

.event-meta {
  color: #555;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.event-content {
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 2rem;
}

/* TinyMCE content styling can be handled separately if needed */

.event-banner {
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tag {
  background-color: #f0f4ff;
  color: #1f3c88;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: #dbe3ff;
}

.button-registration {
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  background-color: #1f3c88;
  color: #ffffff;
}

.button-registration:hover {
  background-color: #162d6c;
}

.event-actions {
  margin-top: 2rem;
}
/* Responsive Design */
@media (max-width: 600px) {
  .event-container {
    padding: 1rem;
    border-radius: 12px;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .event-content {
    font-size: 1rem;
  }
}
