body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 24px;
}

/* Language Switcher Styles */
.lang-switcher {
  margin-bottom: 32px;
  text-align: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.lang-switcher label {
  display: inline-block;
  margin-right: 12px;
  font-weight: bold;
  color: #495057;
}

.lang-btn {
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 0 4px;
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: #5a6268;
}

.lang-btn.active {
  background: #007bff;
  box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

h1 {
  color: #2c3e50;
  margin-bottom: 8px;
  text-align: center;
}

p {
  color: #34495e;
  margin-bottom: 24px;
  text-align: center;
}

/* Question Container Styles */
.question-container {
  margin-bottom: 24px;
}

.question-container label {
  display: block;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.question-container textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1em;
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.question-container textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.question-container textarea::placeholder {
  color: #adb5bd;
  font-style: italic;
}

/* Button Container Styles */
.button-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.button-container button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

#submitBtn {
  background: #28a745;
  color: white;
}

#submitBtn:hover {
  background: #218838;
  transform: translateY(-1px);
}

#clearBtn {
  background: #dc3545;
  color: white;
}

#clearBtn:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* Message Styles */
.message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
} 