/****************************
  APHORISMS INPUT FORM
****************************/

.aphorism-form-wrapper {
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 1.5rem;
  margin: 2rem 0 4rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.aphorism-form-wrapper .form-item {
  margin-bottom: 1.25rem;
}

.aphorism-form-wrapper label {
  font-weight: 600;
  font-size: 1rem;
  color: #2a3f8d;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.aphorism-form-wrapper .form-text,
.aphorism-form-wrapper .form-textarea,
.aphorism-form-wrapper input[type="text"],
.aphorism-form-wrapper textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
  resize: none;
  box-sizing: border-box;
}

.aphorism-form-wrapper input[type="submit"] {
  padding: 0.65rem 1.5rem;
  background-color: #2a52be;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.aphorism-form-wrapper input[type="submit"]:hover {
  background-color: #1f3d91;
}

/* === Avatar controls on output === */
.aphorism-avatar {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
}

.aphorism-avatar img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
