body {
  padding: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}

.header {
  margin-bottom: 20px;
}
.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.options {
  margin-bottom: 25px;
}
.radio-group {
  margin-bottom: 12px;
}
.actions {
  margin-top: auto;
}
.btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #d2d0ce;
}
.btn-primary {
  background-color: #0078d4;
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: #106ebe;
}
.hidden {
  display: none;
}
.status-message {
  padding: 10px;
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}
.success {
  background-color: #dff6dd;
  color: #107c41;
}
.error {
  background-color: #fde7e9;
  color: #a80000;
}
