/* Общие стили */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #2f3136;
  color: #ffffff;
}

/* Основная оболочка */
.app {
  display: flex;
  height: 100vh;
}

/* Левая панель (серверы с аватарами) */
.sidebar {
  width: 70px;
  background-color: #202225;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.server-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin: 5px 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.server-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.server-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Центральная панель (информация о стримере) */
.streamer-info {
  flex-grow: 2; /* Занимает большую часть пространства */
  padding: 20px;
  background-color: #36393f;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.streamer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.avatar-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamer-name {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.streamer-tagline {
  margin: 5px 0 0 0;
  font-size: 16px;
  color: #7289da;
}

.info-section {
  margin-top: 20px;
  padding: 10px;
  background-color: #2c2f33;
  border-radius: 5px;
  width: 100%;
  max-width: 600px;
}

.info-section h3, .info-section h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

/* Стили для ссылок */
.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin: 5px 0;
}

.link-item {
  display: block;
  width: max-content;
  padding: 10px 15px;
  background-color: #40444b;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-align: left;
}

.link-item a {
  color: #7289da;
  text-decoration: none;
  font-size: 14px;
}

.link-item:hover {
  background-color: #36393f;
}

/* Правая панель (пустая) */
.right-panel {
  width: 250px;
  background-color: #2c2f33;
}
