/* --- PAGE HEADER --- */
.page-header {
  display: flex;
  align-items: center;
  padding: 0px 20px 10px 10px;
	border-bottom: 1px solid #3333;
}
.page-header h2 {
  flex: 1;
  text-align: center;
  margin: 0;
	color: #f68b1e;
  font-weight: 400;
}

/* --- PROFILE CARD --- */
.profile-card {
  /* เอา width เต็มออก ถ้ามี */
  /* width: 100%; */

  /* จำกัดความกว้างให้เล็กกว่า page-header */
  max-width: 1000px;
  margin: 0 auto 20px;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #f68b1e, #c1a43f);
  padding: 40px 20px;
  color: #fff;
}
.profile-top {
  display: flex;
  align-items: center;
  justify-content: center;
	margin-bottom: 20px;
}
.profile-picture {
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
	
}
.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info h3,
.profile-info p,
.last-edit {
  text-align: left;
  margin: 2px 0;
	font-weight: 400;
}
.btn-change-photo {
	font-family: 'Kanit', sans-serif;
  margin-top: 15px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
	margin-left: -15px;
}

.btn-bank {
	font-family: 'Kanit', sans-serif;
  margin-top: 15px;
  border: 1px solid #f57c00;
  background: transparent;
  color: #f57c00;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
}

/* --- TABS --- */
.tabs {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs li {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  background: #f4f7f9;
  color: #000;
  cursor: pointer;
}
.tabs li i {
  margin-left: 6px;
}
.tabs li.active {
  background: #f68b1e;
  color: #fff;
}

/* --- INFO SECTION --- */
.info-section {
  padding: 20px;
	background-color: #f4f7f9;
}
.info-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}
.info-row .label {
  flex: 0 0 30%;
  font-weight: 500;
  color: #444;
}
.info-row .value {
  flex: 1;
  color: #222;
}
