/* Основной контейнер */
.bot-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 18px 6px 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #71b821; /* Твой зеленый цвет для рамки */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: bot-float 3s ease-in-out infinite; /* Плавное покачивание */
}

/* Синий круг с иконкой */
.bot-icon-circle {
    background: #24A1DE;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(36, 161, 222, 0.3);
}

/* Текстовый блок */
.bot-content-box {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
}

.bot-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #71b821; /* Твой зеленый */
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}

.bot-main-text {
    font-size: 14px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Точка уведомления */
.bot-notification-dot {
    position: absolute;
    top: -2px;
    left: 38px;
    width: 12px;
    height: 12px;
    background: #ff4b4b; /* Красная точка внимания */
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 10;
}

/* Анимация пульсации для точки */
.bot-notification-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ff4b4b;
    animation: bot-pulse 1.5s ease-out infinite;
}

/* Эффект при наведении */
.bot-container:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(113, 184, 33, 0.2);
    border-color: #24A1DE;
}

/* Анимация покачивания (вверх-вниз) */
@keyframes bot-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Анимация пульсации точки */
@keyframes bot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .bot-content-box {
        display: none;
    }

    .bot-container {
        padding: 6px;
        border-radius: 50%;
    }

    .bot-notification-dot {
        left: 32px;
    }
}