/* Panel container scroll */
#new_character-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;       /* Enable vertical scroll */
  max-height: 80vh;       /* Keep it within viewport */
  padding: 12px;
}

/* Consistent font styling for inputs and labels */
#new_character-form input,
#new_character-form textarea,
#new_character-form button {
  font-family: Arial, sans-serif;
  font-size: 14px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

#new_character-avatar_selector {
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
}

/* Inputs and textarea styling */
#new_character-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-height: 50px;
  resize: vertical;
}



/* Buttons spacing */
#new_character-form button {
  margin-top: 8px;
  padding: 8px;
  cursor: pointer;
}
