/*!
 * Custom Style
 
 */

@media screen and (min-width: 768px) {
  .container {
    width: 786px;
  }
}

header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

header h1 {
  font-size: 2.8em;
  color: #2c3e50; /* Warna judul yang lebih gelap */
  margin-bottom: 10px;
}

header p {
  font-size: 1.1em;
  color: #777;
}

section {
  margin-top: 30px;
}

section h2 {
  font-size: 2em;
  color: #3498db; /* Warna judul section */
  margin-bottom: 20px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

/* Styling Form */
label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
}

.styled-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%233498db" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.styled-select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Styling Jawaban */
.jawaban-area {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  min-height: 100px; /* Tinggi minimal agar terlihat lebih baik saat kosong */
}

.jawaban-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
}

/* Loading Indicator */
.loading {
  text-align: center;
  font-style: italic;
  color: #777;
}

/* Error Message */
.error-message {
  color: #e74c3c; /* Warna merah untuk pesan error */
  font-style: italic;
}
