/* css/chat.css
   Чат (модальное окно, сообщения, вложения)
   Вынесено из style.css без изменения содержимого правил. */

/* ===== ЧАТ ===== */
#chatMessages {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  background: #0b0c1a;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}
#chatInput {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #2a2f5a;
  background: #0b0c1a;
  color: white;
}
.chat-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e94560;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
}
.chat-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1d3a;
  padding: 30px;
  border-radius: 20px;
  z-index: 200;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  border: 1px solid #e94560;
  display: none;
}
.chat-modal.active { display: block; }
#closeChatBtn {
  background: #444;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}
.chat-modal .chat-input-group { margin-bottom: 15px; }
.chat-modal .chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-file-label {
  display: inline-block;
  background: #2a2f5a;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  margin: 0;
}
.chat-file-label:hover { background: #3a3f6a; }
#chatInput { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #2a2f5a; background: #0b0c1a; color: white; }
#sendChatBtn, #closeChatBtn { width: 100%; }
.chat-file-list {
  background: #0b0c1a;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 10px;
  max-height: 120px;
  overflow-y: auto;
}
.chat-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #13152b;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 0.85em;
}
.chat-file-item span { word-break: break-all; margin-right: 8px; }
.remove-file-btn {
  background: #d63031;
  border: none;
  color: white;
  border-radius: 20px;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 0.75em;
}
.remove-file-btn:hover { background: #e74c3c; }
.edit-msg-btn {
  background: #f39c12;
  border: none;
  color: white;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.75em;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
}
.edit-msg-btn:hover { background: #e67e22; }

/* ===== ЧАТ ПОВЕРХ МОДАЛКИ ===== */
#chatModal { z-index: 2000 !important; }
#chatOverlay { z-index: 1999 !important; }

