#account_main * {
  font-size: 20px;
}

#account_main {
  background-color: rgba(233, 174, 129,0.5);
}

#account_main > h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

#account_main > img {
  border-radius: 100%;
}

#account_update {
  text-align: left;
  margin: 16px 32px;
}

#account_update > form {
  margin: 16px 0px;
}

.account-input {
  padding: 8px 12px !important; /* * Overrides main.css styles */
  margin-bottom: 2px !important;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  min-width: 0; /* * Allow inputs to shrink below default min-width */
  width: 100%;
  box-sizing: border-box; /* * Include padding and border in width calculation */
}

.account-input.modified {
  border: 4px solid darkgoldenrod;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
  background-color: rgba(255, 215, 0, 0.05);
}

.account-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.account-small-inputs-container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.account-small-inputs-container > form {
  flex: 1;
  margin-bottom: 16px;
}

#account_discardBtn, #account_saveBtn {
  width: 100px;
}

.account-image-upload-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.account-image-button {
  padding: 8px 16px;
  margin-top: 4px;
  border: 2px solid #444;
  border-radius: 25px;
  background-color: #47c7c7;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.account-image-button:hover {
  border-color: #007bff;
  background-color: #e9ecef;
}

.account-image-status {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.account-image-status.error {
  color: #dc3545;
}

.account-button-container.signout {
  margin-bottom: 16px;
}

/* ========== MOBILE STYLES ========== */
@media only screen and (max-width: 600px) {

  .account-small-inputs-container > form > label {
    min-height: 50px; 
    display: flex;
    align-items: flex-end; 
    margin-bottom: 4px;
  }

}
