﻿/* Mexichat Injection CSS - Mobile Optimized */

[data-mexichat-auto="true"] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  pointer-events: auto;
}

[data-mexichat-auto="true"].hidden {
  display: none !important;
}

[data-mexichat-auto="true"].expanded {
  width: 350px;
  height: 500px;
  max-width: 90vw;
  max-height: 80vh;
}

/* Mexichat Container Styles */
.mexichat-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mexichat-loaded {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.mexichat-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  opacity: 0.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  [data-mexichat-auto="true"].expanded {
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}
