.user-info-card {
    padding: 10px;
}

.user-info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

.user-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-fluid.rounded-circle {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    margin-left: 10px;
    gap: 12px;
}

.user-name {
    font-family: 'Pretendard';
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: var(--color-white);
}

.logout-link {
    font-family: 'Pretendard';
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.user-info-card-body {
    margin-top: 10px;
    padding: 10px;
    background-color: var(--bg-nav-form);
    border-radius: 5px;
}

.user-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 0px;
}

.user-stats .stat-item {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stat-value,
.stat-label {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--text-white);
}

.btn.user-profile-btn {
    background-color: var(--bg-black);
    height: 36px;
    border-radius: 8px;
    font-family: 'Public Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-white);
}

.btn.user-profile-btn:hover {
    background-color: var(--bg-black);
}
