/*Desplazamiento de la Pagina */
html {
    scroll-behavior:smooth;
}

.chat-button {
    position:fixed;
    bottom: 20px;
    right: 20px;
    background-color: #17a2b8;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.chat-container.active {
    opacity: 1;
    visibility: visible;
}
.chat-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}
.chat-item:hover {
    background: #f1f1f1;
}
.chat-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.flotante {
    width: 100px;
    justify-content: center;
}
