.parana-stock-progress-wrapper {
    width: 100%;
    margin: 10px 0;
    direction: rtl;
    font-family: inherit;
}

.parana-stock-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.parana-stock-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.parana-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4757;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    animation: parana-pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.parana-stock-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.parana-stock-highlight {
    color: #ff4757;
    font-weight: 800;
}

.parana-stock-left .parana-stock-text {
    color: #888;
    font-size: 13px;
}

.parana-stock-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #eeeeee;
    border-radius: 10px;
    overflow: hidden;
}

.parana-stock-bar-fill {
    height: 100%;
    background-color: #655EAB;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

@keyframes parana-pulse {
    to {
        box-shadow: 0 0 0 8px rgba(255, 71, 87, 0);
    }
}
