body {
  font-family:'poppins',segoe UI;

  margin: 0;
  padding: 20px;
  justify-content: center;
}

.form-body{
    display: flex;
}
.form-container {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--accent);
}

.event-info {
  background: #f9fafc;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.event-info h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.event-info p {
  margin: 4px 0;
  color: #555;
}

.success {
  color: #2e7d32;
  background: #e8f5e9;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.error {
  color: #c62828;
  background: #ffebee;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 16px;
}

form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-family: 'poppins',segoe UI;
  font-size: 1rem;
  transition: border-color 0.2s;
   box-sizing: border-box;
}

form input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

form button {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  font-family: 'poppins',segoe UI;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  filter: invert(1);
}

form button:active {
  background: #0f4c75;
}

.footer-contact {
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  color: #555;
  /* position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%); */
  width: 100%;
}

.footer-contact p {
  margin: 0 0 8px;
  font-weight: 500;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin: 4px 0;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.org-header {
  text-align: center;
  padding: 16px 0;
  width:100%;
}

.org-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 3px;
}

.org-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
  width:100%;
}

.org-abbr {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-left: 4px;
}

.description-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description-expanded {
  display: inline;
}

.toggle-link {
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-left: 6px;
  cursor: pointer;
  text-decoration: none;
}

.toggle-link:hover {
  text-decoration: underline;
}

*{
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

.chart-card, .chart-container {
    font-family: 'Poppins', sans-serif;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 12px 16px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease, top 0.4s ease;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  top: 40px;
}
