.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chat-button {
    background: #0095DA;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction:row;
    gap: 10px;
    justify-content: center;
    align-items: center;

}

i {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.chat-button:hover {
    transform: scale(1.05);
}

.chat-window {
    display: none;
    width: 350px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    animation: chatSlide 0.3s ease forwards;
}
@keyframes chatSlide {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    border-radius: 28px 28px 0 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.chat-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}
.chat-content:hover {
    background-color: transparent;
}

/* Добавьте стили из предыдущего chat.css */