.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;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5fa;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 20px auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.profile {
  display: flex;
  gap: 20px;
}

.section-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.details p {
  margin: 6px 0;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background: #02328b;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
}
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 10px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.col-4 {
  flex: 1;
}

.profileimg {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.emergency-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.emergency-col {
  flex: 1;
  min-width: 300px;
}

