.metric-insight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.metric-insight > .top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-insight > .top-container > .left-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.metric-insight > .top-container > .left-container > .value {
    font-size: 2rem;
    font-weight: bold;
}

.metric-insight > .top-container > .right-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.metric-insight > .top-container > .right-container > .pulsing-dot {
    top: 1.5rem;
    right: 1.5rem;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: #007aff;
}

.pulsing-dot::after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #007aff;
    display: block;
    animation: pulse 2s ease 0s infinite;
}

/* Animations */

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 0;
        transform: scale(2.5);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}