.signal-container {
    display: flex;
    align-items: center;
}

.blue-dot {
    width: 10px;
    height: 10px;
    background-color: #055f84;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulsate 1.5s infinite; /* Pulsating animation */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.signal-text {
    font-size: 16px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}
