.me-content {
  flex: 1; padding: 20px; display: flex; flex-direction: column;
}

.me-title {
  font-size: 20px; font-weight: 800; text-align: center;
  color: #2a6db5; margin-bottom: 24px;
}

/* Profile Card */
.profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(42, 109, 181, 0.08);
  border: 1px solid rgba(42, 109, 181, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #eef5ff 0%, #d6e8ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2a6db5;
  font-size: 32px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(42, 109, 181, 0.15);
  overflow: hidden;
}

.profile-avatar i {
  line-height: 1;
}

.profile-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a3a5f;
  margin-bottom: 4px;
}

.profile-phone {
  font-size: 14px;
  color: #677b92;
  font-weight: 600;
}

.profile-details {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f4f8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

/* Bookings Section */
.me-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a3a5f;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.me-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #f0f4f8;
  border-radius: 2px;
}

#me-booking-list {
  display: grid;
  gap: 12px;
}

.booking-item {
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.booking-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.b-name { font-size: 14px; font-weight: 800; color: #333; }
.b-date { font-size: 12px; color: #6a7b8e; margin-top: 2px; }
.b-detail { font-size: 12px; color: #777; line-height: 1.6; }
.booking-item-status {
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  border-radius: 12px; background: #d4edda; color: #155724;
}
.booking-item-status.pending,
.booking-item-status.cancel_requested { background: #fff3cd; color: #856404; }
.booking-item-status.cancelled { background: #fde2e2; color: #a33131; }
.booking-item-status.completed { background: #e5f2ff; color: #245f9b; }

.booking-empty,
.booking-loading {
  padding: 30px 20px;
  border-radius: 16px;
  background: rgba(42, 109, 181, 0.04);
  text-align: center;
  font-size: 13px;
  color: #6a7b8e;
}

@media (max-width: 360px) {
  .me-content {
    padding-inline: 14px;
  }
  .profile-details {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  body.page-me {
    align-items: center;
    padding: 0;
    background:
      radial-gradient(circle at left top, rgba(42, 109, 181, 0.12), transparent 30%),
      radial-gradient(circle at right bottom, rgba(141, 198, 63, 0.12), transparent 24%),
      #f0ebe0;
  }

  .page-me .app {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    border-radius: 0;
  }

  .page-me .me-content {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 84px 56px 40px;
  }

  .page-me .me-title {
    font-size: 34px;
    margin-bottom: 32px;
  }

  .page-me .profile-card {
    flex-direction: row;
    text-align: left;
    padding: 32px;
    gap: 32px;
  }

  .page-me .profile-avatar {
    margin-bottom: 0;
    width: 100px;
    height: 100px;
    flex-basis: 100px;
    font-size: 40px;
  }

  .page-me .profile-details {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid #f0f4f8;
    padding-left: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .page-me #me-booking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-me .nav-btns {
    padding: 6px 56px 28px;
    justify-content: flex-end;
    width: min(900px, 100%);
    margin: 0 auto;
  }
}
