/* ===============================
   PROFILE HEADER
================================ */
.profile-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #0b4bb3;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 10;
}

.back-btn img{
  width: 22px;
  height: 22px;
}

.profile-header-text{
  display: flex;
  flex-direction: column;
}

.profile-header-text strong{
  color: #fff;
  font-size: 16px;
}

.profile-header-text small{
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

/* page spacing */
.profile-page{
  padding-top: 70px;
}

/* ===============================
   AVATAR
================================ */
.profile-avatar{
  position: relative;
  width: 110px;
  height: 110px;
  margin: 20px auto;
  border-radius: 50%;
  border: 3px solid #0b4bb3;
}

.profile-avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.camera-btn{
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 30px;
  height: 30px;
  background: #0b4bb3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-btn img{
  width: 25px;
  height: 25px;
}

/* ===============================
   FORM
================================ */
.profile-form{
  margin-top: 10px;
}

.profile-form label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 6px;
}

.profile-form input{
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.profile-form input:disabled{
  background: #f3f4f6;
  color: #9ca3af;
}

.hint{
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
  display: block;
}

/* ===============================
   ACTION BUTTONS
================================ */
.profile-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
}

.profile-actions a{
  flex:1;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  text-decoration:none;
}

.btn-outline{
  background:#fff;
  border:1.5px solid #0b4bb3;
  color:#0b4bb3;
}

.btn-primary{
  background:#0b4bb3;
  color:#fff;
}
