/* Profile Edit Form (Professional Look) */
.dashboard-profile-edit-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 2.5rem 2.5rem 2.5rem;
  max-width: 540px;
  margin: 2.5rem auto 0 auto;
}
.dashboard-profile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.3rem 0;
}
.dashboard-profile-edit-form label {
  font-weight: 500;
  color: #222;
  margin-bottom: 0.2rem;
  display: block;
}
.dashboard-profile-edit-form input[type="text"],
.dashboard-profile-edit-form input[type="email"],
.dashboard-profile-edit-form input[type="url"],
.dashboard-profile-edit-form input[type="number"] {
  width: 100%;
  margin-bottom: 0.7rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid #d3d8e2;
  border-radius: 5px;
  background: #f4f6fa;
  font-size: 1.05rem;
  transition: border 0.2s;
}
.dashboard-profile-edit-form input[type="text"]:focus,
.dashboard-profile-edit-form input[type="email"]:focus,
.dashboard-profile-edit-form input[type="url"]:focus,
.dashboard-profile-edit-form input[type="number"]:focus {
  border: 1.5px solid #0079f2;
  outline: none;
}
.dashboard-profile-edit-form button[type="submit"] {
  margin-top: 1.2rem;
  background: #0079f2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.7rem;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background 0.2s;
}
.dashboard-profile-edit-form button[type="submit"]:hover {
  background: #005bb5;
}
.dashboard-profile-edit-form .dashboard-profile-details {
  margin-top: 1.5rem;
}
.dashboard-profile-edit-form #copyReviewLinkSection {
  margin: 2.2rem 0 1.2rem 0;
  padding: 1.1rem 1.2rem;
  background: #f7f9fc;
  border-radius: 8px;
}
.dashboard-profile-edit-form #publicReviewLinkInput {
  flex: 1;
  padding: 0.5rem 0.7rem;
  border: 1px solid #d3d8e2;
  border-radius: 5px;
  background: #f4f6fa;
  font-size: 1.05rem;
}
.dashboard-profile-edit-form #copyReviewLinkBtn {
  background: #0079f2;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.dashboard-profile-edit-form #copyReviewLinkBtn:hover {
  background: #005bb5;
}
.dashboard-profile-edit-form #copyReviewLinkMsg {
  color: #0079f2;
  font-size: 0.97rem;
  margin-top: 0.3rem;
  display: none;
}
.dashboard-profile-upload-label {
  background: #f4f6fa;
  color: #0079f2;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.2rem;
}
.dashboard-profile-upload-form {
  margin-bottom: 1.2rem;
}
/* Avatar style for profile form (match header) */
.dashboard-profile-edit-form .dashboard-header-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 50%;
  background: #e6eaf3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
}
