main {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px;
  background-color: rgb(251, 241, 223);
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

header {
  text-align: center;
  margin-bottom: 5px;
}

.username {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8263f;
  margin-bottom: 12px;
}

.admin-p {
  display: inline-block;
  background-color: #e8263f;
  color: white;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 8px;
}

.follow-container {
  text-align: center;
  margin-bottom: 25px;
}

.follow-profile {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background-color: #e8263f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.follow-profile:hover {
  background-color: #c01e34;
  transform: translateY(-2px);
}


section {
  text-align: center;
}

section p {
  margin: 12px 0;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

section .user-button {
  display: inline-block;
  margin: 12px 8px;
  padding: 12px 22px;
  border-radius: 30px;
  background-color: #e8263f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

section .user-button:hover {
  background-color: #c01e34;
  transform: translateY(-2px);
}

.username-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.username {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8263f;
  margin: 0;
}

.edit-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.edit-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.followers-button {
  color: black;
  transition: color 0.5s;
  text-decoration: none;
}

.followers-button:hover {
  color: #e8263f;
}

.likes-container {
  text-align: center;
  margin: 24px 0;
}

