.profile-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Боковое меню */
.profile-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: var(--bs-light-bg-subtle);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--bs-box-shadow);
}

.user-info {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bs-border-color);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  background: var(--bs-primary);
  border: 3px solid var(--avatar-accent-color);
  box-shadow: 0 0 0 2px var(--avatar-accent-color);
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--avatar-accent-color) 100%);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  font-size: 2rem;
  font-weight: bold;
}

.user-info h3 {
  margin: 0 0 5px;
  color: var(--bs-body-color);
  font-size: 1.3rem;
}

.user-email {
  margin: 0;
  color: var(--bs-secondary-color);
  font-size: 0.9rem;
}

/* Навигация */
.profile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-nav li {
  margin-bottom: 8px;
}

.profile-nav a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--bs-body-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.profile-nav a:hover,
.nav-link-button:hover {
  border-left-color: var(--bs-primary);
  background: var(--bs-tertiary-bg);
  color: var(--bs-primary);
  transform: translateX(5px);
}

.profile-nav a.active {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.profile-nav .coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Основной контент */
.profile-content {
  flex: 1;
  min-width: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    gap: 20px;
  }

  .profile-sidebar {
    width: 100%;
  }
}

/* Или если используете второй вариант */
.nav-link-form {
  margin: 0;
  padding: 0;
}

.nav-link-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--bs-body-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  border-left: 3px solid transparent;
}