/* Стили для чата */
#chat-container {
  position: absolute;
  bottom: 120px;
  left: 10px;
  right: 10px;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 12px;
  /* padding: 0px; */
  z-index: 15;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(2px);
  height: 12px; /* Фиксированная высота */
  box-sizing: border-box;
}

#chat-container.visible {
  display: flex;
}

/* #chat-toggle-btn {
  position: absolute;
  bottom: 180px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 20;
  display: flex;
} */

#chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 0;
  padding: 4px;
  height: calc(200px - 50px); /* Высота минус поле ввода */
}

#chat-messages::-webkit-scrollbar {
  display: none;
}

.chat-message {
  color: white;
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.3;
  word-break: break-word;
  padding-right: 5px;
}

.chat-message-time {
  color: #aaa;
  margin-right: 5px;
  font-size: 10px;
}

.chat-message-name, a {
  /* color: #4dabf7; */
  color: #2196f3;
  font-weight: bold;
  margin-right: 5px;
}

#chat-input-container {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#chat-input {
  flex-grow: 1;
  background: rgba(60, 60, 60, 0.7);
  border: none;
  border-radius: 14px;
  padding: 8px 15px;
  color: white;
  font-size: 14px;
  outline: none;
}

#chat-send-btn {
  /* width: 40px;
  height: 40px;
  background: rgba(46, 46, 46, 0.7); */
  flex-shrink: 0;
}

/* Адаптация для вертикальной ориентации */
@media (orientation: landscape) {
   #chat-container {
      width: 35%;
    left: 40px;
    bottom: 20px;
    height: 200px;
     }
}

@media (orientation: portrait) {
  #chat-container {
    bottom: 100px;
    height: 140px;
  }
  
  #chat-toggle-btn {
    bottom: 150px;
  }
  
  #chat-messages {
    height: calc(200px - 50px);
  }
  
  .chat-message {
    font-size: 11px;
  }
}