body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.profile-card {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* width: 89%; */
  max-width: 400px;
  padding: 10px;
}

.section {
  text-align: center;
  background-color: #4b4b4b;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}

.title {
  font-size: 24px;
  margin-bottom: 10px;
}

.membership-tier {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tier-label {
  font-size: 16px;
}

.tier-icon img {
  width: 70%;
}

.tier-icon {
  margin: 10px 0px;
}

.username {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.points {
  margin-bottom: 10px;
}

.points-detail {
  display: block;
  margin-bottom: 5px;
}

.rank-info div {
  font-size: 14px;
}

.top-thinkers {
/*  display: flex;*/
  align-items: center;
  justify-content: center;
/*  margin-bottom: 20px;*/
}

.slider {
  display: flex;
  overflow: auto;
  width: 350px;
  padding-bottom: 10px;
  margin: 20px 0px;
}

.thinker {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  margin-right: 10px;
}

.thinker img {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border: 1px solid #fff;
}

.thinker-info {
  text-align: center;
}

.thinker-name {
  font-size: 14px;
  font-weight: 400;
}

.thinker-points {
  font-size: 12px;
  color: #fff;
}

.buttons button {
  background: linear-gradient(180deg, #959595 0%, #4b4b4b 100%);
  color: white;
  border: none;
  font-weight: 500;
  padding: 13px;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.points-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.points-item .label {
  font-size: 12px;
  color: #bbb;
}

.points-item .value {
  font-size: 18px;
  font-weight: bold;
}

.progress-bar {
  background-color: #f3f3f3;
  border-radius: 3px;
  overflow: hidden;
  height: 5px;
  margin: 5px 0 10px 0;
  position: relative;
}

.progress {
  background-color: #05c9a7;
  height: 100%;
  border-radius: 5px;
  transition: width 0.3s;
}

.progress-goal {
  font-size: 12px;
  color: #959595;
}

.rank-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.info-box {
  background-color: #444;
  border-radius: 10px;
  padding: 12px;
  /* width: 70px; */
  text-align: center;
}

.info-box .label {
  font-size: 11px;
  color: #959595;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-box .value {
  font-size: 15px;
  font-weight: 500;
}
