body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 20px;
}

.navbar a {
  color: #fff;
  margin-right: 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #4fc08d;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}.user-info {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-menu .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.user-menu .email {
  font-weight: bold;
}.navbar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: #333;
  color: white;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.navbar .spacer {
  flex-grow: 1;
}
.settings {
  max-width: 400px;
  margin: 20px auto;
}
.settings input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}
.avatar-preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 15px;
}

  #nprogress {
      pointer-events: none;
    }

    #nprogress .bar {
      background: #29d;

      position: fixed;
      z-index: 1031;
      top: 0;
      left: 0;

      width: 100%;
      height: 2px;
    }

    #nprogress .peg {
      display: block;
      position: absolute;
      right: 0px;
      width: 100px;
      height: 100%;
      box-shadow: 0 0 10px #29d, 0 0 5px #29d;
      opacity: 1.0;

      -webkit-transform: rotate(3deg) translate(0px, -4px);
          -ms-transform: rotate(3deg) translate(0px, -4px);
              transform: rotate(3deg) translate(0px, -4px);
    }

    #nprogress .spinner {
      display: block;
      position: fixed;
      z-index: 1031;
      top: 15px;
      right: 15px;
    }

    #nprogress .spinner-icon {
      width: 18px;
      height: 18px;
      box-sizing: border-box;

      border: solid 2px transparent;
      border-top-color: #29d;
      border-left-color: #29d;
      border-radius: 50%;

      -webkit-animation: nprogress-spinner 400ms linear infinite;
              animation: nprogress-spinner 400ms linear infinite;
    }

    .nprogress-custom-parent {
      overflow: hidden;
      position: relative;
    }

    .nprogress-custom-parent #nprogress .spinner,
    .nprogress-custom-parent #nprogress .bar {
      position: absolute;
    }

    @-webkit-keyframes nprogress-spinner {
      0%   { -webkit-transform: rotate(0deg); }
      100% { -webkit-transform: rotate(360deg); }
    }
    @keyframes nprogress-spinner {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
		
		/* Основной контейнер */
.social-wrapper {
    padding: 15px;
    background-color: #f5f5f5; /* Светлый фон */
    border: 1px solid #ddd; /* Легкая граница */
    border-radius: 8px; /* Закругленные углы */
    max-width: 300px; /* Ограничение ширины */
    margin: 10px auto; /* Центрирование */
    text-align: center; /* Центрирование текста */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Тень */
}

/* Заголовок */
.social-wrapper h4 {
    font-size: 18px;
    color: #333; /* Темный текст */
    margin-bottom: 10px; /* Отступ снизу */
    font-weight: bold;
}

/* Разделительная линия */
.social-wrapper hr {
    border: none;
    border-top: 1px solid #ddd; /* Серый разделитель */
    margin: 10px 0; /* Отступы сверху и снизу */
}

/* Контейнер ссылок */
.social-links {
    display: flex; /* Гибкий контейнер */
    justify-content: center; /* Центрирование элементов */
    gap: 15px; /* Промежуток между ссылками */
}

/* Ссылки */
.social-links a {
    color: #007bff; /* Синий текст */
    text-decoration: none; /* Убираем подчеркивание */
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease; /* Плавный переход цвета */
}

/* Ссылки при наведении */
.social-links a:hover {
    color: #0056b3; /* Более темный синий при наведении */
}

.player-drawer {
  display: none; /* Скрываем по умолчанию */
}

.player-drawer.show {
  display: block; /* Показываем, если открыто */
}

.dropdown.language-menu .dropdown-content {
  display: none;
}
.dropdown.language-menu.open .dropdown-content {
  display: block;
}





/* Стили для профиля */
.profile-menu {
  position: relative;
  display: inline-block;
}

#profile-menu-button {
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  top: 35px; /* Располагаем меню ниже кнопки */
  right: 0;
  width: 200px;
}

.profile-menu .dropdown-content {
  display: block;
}

.dropdown-content .social-wrapper h4 {
  margin: 0;
  font-weight: bold;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.social-links a:hover {
  color: #f39c12;
}

/* Кнопка выхода */
.dropdown-content button {
  background-color: #2fb383;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.dropdown-content button:hover {
  background-color: #2fb383;
}


/* Стили для выпадающего меню */



.profile-menu.open .dropdown-content {
  display: block;
}


.profile-menu .dropdown-content {
  width: auto; /* Позволяет меню адаптироваться по содержимому, если это необходимо */
}


.profile-menu.open .dropdown-content {
  animation: fadeIn 0.3s ease-in-out;
}


.profile-menu .dropdown-content a {
  padding: 8px 16px;
}


.profile-menu .dropdown-content a {
  background-color: transparent;
  color: #333;
  border: none;
  cursor: pointer;
  width: 100%;
}

.profile-menu .dropdown-content a:hover {
  background-color: #f39c12;
  color: #fff;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 260px;
    background: #111;
    z-index: 1000;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-toggle {
    position: absolute;
    top: 10px;
    right: -50px;
    background: #1ecf67;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
  }
}


.vertical-slider {
  height: 500px; /* или сколько нужно под 5 песен */
}
.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
}
.image-frame img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #999;
  margin: 4px 0;
  border: none;
}
.dot.active {
  background-color: white;
}

.radio-schedule {
  display: flex;
  background: #1a1a1a;
  font-family: 'Inter', sans-serif;
  border: 1px solid #333;
}
.radio-schedule .hours {
  width: 60px;
  border-right: 1px solid #333;
}
.radio-schedule .hour {
  height: 60px;
  border-bottom: 1px solid #222;
  font-size: 12px;
  text-align: right;
  padding: 6px 5px;
  color: #888;
}
.radio-schedule .day-column {
  flex: 1;
  border-right: 1px solid #333;
  position: relative;
}
.radio-schedule .day-header {
  text-align: center;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  font-weight: bold;
  font-size: 14px;
  color: #ccc;
  background-color: #1a1a1a;
}
.radio-schedule .program {
  position: absolute;
  left: 5px;
  right: 5px;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: white;
  padding: 6px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}




.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
}

.track-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px;
  background: #2a2a40;
  border-radius: 6px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.track-item:hover {
  background: #ff5e57;
  color: white;
}

.track-cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 12px;
  box-shadow: 0 0 6px rgba(255, 94, 87, 0.6);
}

.track-info {
  font-size: 1rem;
  user-select: none;
}




.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main-content {
  flex: 1 1 70%;
  min-width: 300px;
}

.side-content {
  flex: 1 1 30%;
  min-width: 200px;
}











