.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}
.container .contents {
  margin-top: 20px;
}
.profile {
  background: white;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.profile .profile-info {
  display: flex;
  align-items: center;
}
.profile .profile-info .avatar {
  width: 80px;
  height: 80px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 20px;
}
.profile .profile-info .user-info .nickname {
  display: flex;
  align-items: center;
}
.profile .profile-info .user-info .nickname h2 {
  margin: 0;
}
.profile .profile-info .user-info .nickname a {
  margin-left: 10px;
}
.profile .profile-info .user-info .follow-info {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}
.profile .profile-info .user-info .follow-info .level {
  background: #e5efff;
  color: #337aff;
  padding: 3px 6px;
  border-radius: 5px;
  margin-left: 8px;
  font-weight: bold;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  position: relative;
  border-bottom: 2px solid #ddd;
}
.tabs a {
  padding-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  position: relative;
}
.tabs a.active {
  color: #000;
}
.tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
}
.follow-btn {
  display: inline-block;
  padding: 4px 8px;
  background-color: #337aff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.1s ease;
  margin-left: 10px;
}
.follow-btn:hover {
  background-color: #0059ff;
}
.follow-btn.following {
  background-color: #96b3eb;
  color: white;
}
.follow-btn.following:hover {
  background-color: #6b94e3;
}
.share-btn {
  display: inline-block;
  padding: 4px 8px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.1s ease;
}
.share-btn:hover {
  background-color: #e0e0e0;
}
/*# sourceMappingURL=078946d1ee42a350cb0a76d4fd447e364b47829e.index.scss.map */
