/* Layout & Grid */
.sidebar {
  width: 280px;
  background: var(--bg-sidebar);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

.content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  min-width: 0;
}

.header-block {
  max-width: 1000px;
  margin-bottom: 40px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: start;
}

/* Auth Pages Layout */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 480px;
}
