/* ========================================
   All For You Messenger - Custom Styles
   ======================================== */

/* Emoji picker styles */
.emoji-picker-container {
  position: absolute;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
}

    /* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-window {
  animation: fadeIn 0.2s ease;
}

    /* Scrollbar styles - light theme */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

    /* Scrollbar styles - dark theme */
body.dark-theme ::-webkit-scrollbar-track {
  background: #2a2a3a;
}

body.dark-theme ::-webkit-scrollbar-thumb {
  background: #555;
}

body.dark-theme ::-webkit-scrollbar-thumb:hover {
  background: #777;
}


/* ===== МЕДИА В МОДАЛЬНОМ ОКНЕ (центрирование и масштабирование) ===== */
.media-modal {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.media-modal #mediaContainer {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  height: 100%;
}

.media-modal img,
.media-modal video {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto !important;
}