/* Estilos para la barra minimizada del chatbot */
#chatbot-minimized {
    display: none;
    position: fixed;
    right: 32px;
    bottom: 96px;
    z-index: 10001;
    background: #004A99;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px #004a9940;
    padding: 0.5rem 1.2rem 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.7rem;
    min-height: 48px;
    height: 48px;
}
#chatbot-minimized img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    margin-right: 0.5rem;
    display: block;
    object-fit: contain;
}
