html, body {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f1f5f9;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.emblem {
  width: 80px;
  margin-bottom: 12px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

select,
input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  margin-top: 20px;
  width: 100%;
  background-color: #0b5ed7;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

button:hover:not(:disabled) {
  background-color: #084298;
}

.status {
  margin-top: 20px;
  font-size: 1.1rem;
  color: green;
  min-height: 24px;
}

/* Mobile keyboard fix: extra space below */
@media (max-width: 600px) {
  .container {
    margin-bottom: 150px;
  }
}
