.admin-profile-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.profile-header h2 {
 font-size: 20px;
  font-weight: 600;
  color: #333;
}

.edit-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #00356e;
}

.profile-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-picture {
  display: flex;
  justify-content: center;
}

.profile-picture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
}


.form-row input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.form-actions {
  text-align: right;
}

.save-btn {
  background-color: #00438b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.save-btn:hover {
  background-color: #60adff;
}
