﻿#ai-assistant-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 90vw;        /* 90% del ancho del viewport */
    max-width: 400px;   /* Ancho máximo en pantallas grandes */
    height: 70vh;       /* 70% del alto del viewport */
    max-height: 600px;  /* Alto máximo */
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: hidden;
    z-index: 10000;
    transition: all 0.3s ease;
}

#ai-assistant-container.minimized {
    height: 40px !important;
    max-height: 40px;
}

#ai-assistant-header {
    background: #007bff;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 16px); /* Texto responsivo */
}

#ai-assistant-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ai-assistant-iframe {
    width: 100%;
    height: calc(100% - 48px); /* Resta la altura del header */
    border: none;
    display: block;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    #ai-assistant-container {
        width: 95vw;
        height: 80vh;
        max-width: none;
        max-height: none;
        bottom: 10px;
        right: 10px;
        left: 10px;
        margin: 0 auto;
    }
}