.profile-form {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}
.required:after {
  content: " *";
  color: #dc3545;
}
.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
}
.upload-btn {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
.file-info {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}
.action-buttons {
  text-align: right;
  margin-top: 30px;
}
.btn-cancel {
  background-color: #f1f3f5;
  border: none;
  color: #212529;
  margin-right: 10px;
}
.btn-save {
  background-color: #6c757d;
  border: none;
}
