h2,
h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.profile-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.profile-image-form {
  max-width: 300px;
  text-align: center;
}

.profile-image-form img {
  max-width: 120px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 12px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Responsive profile layout */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
  }

  form,
  .profile-image-form {
    width: 100%;
  }
}

/* Additional minor tweaks for profile page if needed */

/* body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f1f3f6;
  color: #333;
}

h2,
h3 {
  color: #1976d2;
}

form {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  max-width: 600px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

button {
  background-color: #1976d2;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0f5fa5;
}

img {
  border-radius: 50%;
  margin-bottom: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
}

table th {
  background-color: #1976d2;
  color: white;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.profile-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.profile-image-form {
  max-width: 300px;
  text-align: center;
}

@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
  }

  form,
  .profile-image-form {
    width: 100%;
  }
} */
