body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4f8;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 15px;
}

.lang-selector {
  text-align: right;
  margin-bottom: 25px;
}

.lang-selector select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  color: #555;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.lang-selector select:hover {
  border-color: #4CAF50;
}

.lang-selector select:focus {
  outline: none;
  border-color: #4CAF50;
}

/* removed about-icon and about-tooltip styles */

.card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.card h1, .card h2 {
  margin-top: 0;
  color: #2c3e50;
}

.card p {
  line-height: 1.6;
  color: #555;
}

.steps-card ol {
  padding-left: 20px;
}

.event-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
}

.event-form input {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-size: 16px; /* avoid iOS auto-zoom on focus */
}

.event-form input:focus {
  border-color: #4CAF50;
  outline: none;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.05em;
  margin-top: 15px;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #45a049;
  transform: scale(1.03);
}

footer.github-footer {
  text-align: center;
  margin-top: 45px;
  font-size: 0.95em;
  color: #555;
}

footer.github-footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

footer.github-footer a:hover {
  color: #2c3e50;
}

/* Manage page specific styles */
.share-section {
  background-color: #e8f5e9;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #4CAF50;
}

.share-link-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.share-link-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: monospace;
  font-size: 14px;
}

.share-link-box button {
  margin: 0;
  width: auto;
  padding: 10px 20px;
}

.draw-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
}

.draw-button:hover {
  background-color: #45a049;
  transform: scale(1.03);
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  background-color: #f5f5f5;
  padding: 12px 15px;
  margin: 8px 0;
  border-radius: 8px;
  border-left: 3px solid #4CAF50;
}

@media (max-width: 768px) {
  .share-link-box {
    flex-direction: column;
  }
  
  .share-link-box button {
    width: 100%;
  }
}