/* Scrollable panel content, like edit_user */
#changepw-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;   /* Enable vertical scroll */
  max-height: 80vh;   /* Keep within viewport under header */
  padding: 12px;
}

/* Inputs */
#changepw-form input {
  font-family: Arial, sans-serif;
  font-size: 14px;
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;

  margin-top: 0;
  margin-bottom: 12px;
  box-sizing: border-box;
}

/* Buttons */
#changepw-form button {
  font-family: Arial, sans-serif;
  font-size: 14px;
  width: 100%;
  max-width: 300px;
  margin-top: 8px;
  padding: 8px;
  cursor: pointer;
  box-sizing: border-box;
}

/* Error text */
#changepw-err {
  color: #d44;
  min-height: 20px;
  font-size: 13px;
  text-align: center;
}

/* Example button colors (reuse your btn-green/btn-red, add btn-blue) */
.btn-green {
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
}
.btn-green:hover {
  background: #218838;
}

.btn-red {
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 4px;
}
.btn-red:hover {
  background: #c82333;
}

.btn-blue {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
}
.btn-blue:hover {
  background: #0069d9;
}
