.orderbump-item {
    border: 1.5px solid #ccc;
    cursor: pointer;
    box-shadow: 0 0 0.5rem 0.1rem rgba(0, 0, 0, 0.1);
}

.orderbump-item:hover {
    box-shadow: 0 0 0.5rem 0.1rem rgba(0, 0, 0, 0.2);
}

.orderbump-actions {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: -0.5rem;
    right: 0;
}

.orderbump-checkbox {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    cursor: pointer;
}

.orderbump-item:has(input[type="checkbox"]:checked) {
    border: 1.5px solid#71c358;
}

.orderbump-checkbox {
    border-radius: 0.25rem;
    color: #71c358;
}

.orderbump-description {
    font-size: 0.875rem;
    line-height: 1rem;
}

.price-container {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 0;
    padding: 0.3rem;
    font-size: 1rem;
        align-items: center;
}

.old-price {
    font-size: 0.75rem;
}

.new-price {
    color: #268c07;
    font-weight: bold;
}