/* wcph styles */
.price-history__wrapper {
    position: relative;
    display: inline-block;
}

.price-history {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem 0;
}

.price-history .ms-2 {
    margin-left: 0.25rem;
}

.price-history .price-history-icon {
    display: flex;
}

.price-history-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.price-history-dropdown:hover .price-history-content {
    display: block;
}

.price-history-content span {
    font-size: 0.875rem;
}

.rotating {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}